Fix missing display_name in membership status creation
Build and Push Docker Image / build (push) Successful in 2m18s
Details
Build and Push Docker Image / build (push) Successful in 2m18s
Details
The membership_statuses table requires display_name but the setup page was not providing it when creating the initial Active status. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
cfbf7639c2
commit
7a184e8a5f
|
|
@ -123,6 +123,7 @@ export const actions: Actions = {
|
|||
.from('membership_statuses')
|
||||
.insert({
|
||||
name: 'Active',
|
||||
display_name: 'Active',
|
||||
description: 'Active member in good standing',
|
||||
is_default: false,
|
||||
color: '#22c55e'
|
||||
|
|
|
|||
Loading…
Reference in New Issue