mirror of
https://github.com/grocy/grocy.git
synced 2026-07-19 09:54:32 -07:00
3 lines
81 B
SQL
3 lines
81 B
SQL
ALTER TABLE meal_plan
|
|
ADD done TINYINT NOT NULL DEFAULT 0 CHECK(done IN (0, 1));
|