mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
6 lines
139 B
SQL
6 lines
139 B
SQL
ALTER TABLE stock_log
|
|
ADD undone TINYINT NOT NULL DEFAULT 0 CHECK(undone IN (0, 1));
|
|
|
|
ALTER TABLE stock_log
|
|
ADD undone_timestamp DATETIME;
|