mirror of
https://github.com/grocy/grocy.git
synced 2026-07-19 09:54:32 -07:00
6 lines
140 B
SQL
6 lines
140 B
SQL
|
|
ALTER TABLE chores_log
|
||
|
|
ADD skipped TINYINT NOT NULL DEFAULT 0 CHECK(skipped IN (0, 1));
|
||
|
|
|
||
|
|
ALTER TABLE meal_plan_sections
|
||
|
|
ADD time_info TEXT;
|