Make it possible to mark meal plan entries as done (closes #924)

This commit is contained in:
Bernd Bestel
2021-07-11 18:32:26 +02:00
parent 1ad0360e42
commit 7380175093
4 changed files with 89 additions and 20 deletions

2
migrations/0142.sql Normal file
View File

@@ -0,0 +1,2 @@
ALTER TABLE meal_plan
ADD done TINYINT NOT NULL DEFAULT 0 CHECK(done IN (0, 1));