mirror of
https://github.com/grocy/grocy.git
synced 2025-12-01 02:31:57 +00:00
9 lines
207 B
SQL
9 lines
207 B
SQL
CREATE TABLE meal_plan_notes (
|
|
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
|
|
day DATE NOT NULL,
|
|
note TEXT,
|
|
row_created_timestamp DATETIME DEFAULT (datetime('now', 'localtime')),
|
|
|
|
UNIQUE(day)
|
|
);
|