feat: optimize layout for mobile devices (Pixel 9 Pro)

This commit is contained in:
2025-12-18 09:59:31 +01:00
parent 9ba1f8bd56
commit 330c8e1cc0
5 changed files with 29 additions and 29 deletions

View File

@@ -37,7 +37,7 @@ CREATE TABLE IF NOT EXISTS bottles (
category TEXT, -- Single Malt, Bourbon, etc.
abv DECIMAL,
age INTEGER,
status TEXT DEFAULT 'sealed' CHECK (status IN ('sealed', 'open', 'empty')),
status TEXT DEFAULT 'sealed' CHECK (status IN ('sealed', 'open', 'sampled', 'empty')),
whiskybase_id TEXT,
image_url TEXT,
is_whisky BOOLEAN DEFAULT true,