add updated_at fields

This commit is contained in:
2025-05-26 11:10:42 +02:00
parent 28db52dc2e
commit 5cd9d65e00
8 changed files with 438 additions and 4 deletions

View File

@@ -23,6 +23,7 @@ export interface Shop {
city: string;
address?: string;
created_at: string;
updated_at?: string;
}
export interface ShopCreate {
@@ -55,6 +56,7 @@ export interface ShoppingEvent {
total_amount?: number;
notes?: string;
created_at: string;
updated_at?: string;
shop: Shop;
groceries: GroceryWithEventData[];
}