add new day column to event table

This commit is contained in:
Adrian Zürcher
2025-11-29 15:55:44 +01:00
parent 5ecf1eca18
commit 62549c9039
5 changed files with 50 additions and 2 deletions

View File

@@ -3,6 +3,8 @@ import type { Members } from './member';
export interface Event {
id: number;
name: string;
date?: string;
day?: string;
attendees: Members;
}