mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 17:45:39 +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)
|
|
);
|