mirror of
https://github.com/grocy/grocy.git
synced 2025-09-24 21:31:39 +00:00
9 lines
207 B
MySQL
9 lines
207 B
MySQL
![]() |
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)
|
||
|
);
|