Fix missing display_name in membership status creation
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:
Matt 2026-01-26 14:00:53 +01:00
parent cfbf7639c2
commit 7a184e8a5f
1 changed files with 1 additions and 0 deletions

View File

@ -123,6 +123,7 @@ export const actions: Actions = {
.from('membership_statuses') .from('membership_statuses')
.insert({ .insert({
name: 'Active', name: 'Active',
display_name: 'Active',
description: 'Active member in good standing', description: 'Active member in good standing',
is_default: false, is_default: false,
color: '#22c55e' color: '#22c55e'