mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
9 lines
169 B
SQL
9 lines
169 B
SQL
ALTER TABLE chores
|
|
ADD consume_product_on_execution TINYINT NOT NULL DEFAULT 0;
|
|
|
|
ALTER TABLE chores
|
|
ADD product_id TINYINT;
|
|
|
|
ALTER TABLE chores
|
|
ADD product_amount REAL;
|