feat: add bottle editing and purchase price tracking

This commit is contained in:
2025-12-18 12:16:01 +01:00
parent 6e09300bab
commit 970dabbbf6
5 changed files with 234 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ interface Bottle {
abv: number;
age: number;
image_url: string;
purchase_price?: number | null;
status: 'sealed' | 'open' | 'sampled' | 'empty';
created_at: string;
last_tasted?: string | null;