mirror of
https://github.com/grocy/grocy.git
synced 2025-10-15 09:46:03 +00:00
Make it possible to add notes to meal plan (days) (closes #477)
This commit is contained in:
8
migrations/0096.sql
Normal file
8
migrations/0096.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
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)
|
||||
);
|
Reference in New Issue
Block a user