mirror of
https://github.com/grocy/grocy.git
synced 2025-08-20 12:20:22 +00:00
Make it possible to hide locations/stores/QUs/product_groups/task_categories (closes #2222)
This commit is contained in:
14
migrations/0218.sql
Normal file
14
migrations/0218.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
ALTER TABLE locations
|
||||
ADD active TINYINT NOT NULL DEFAULT 1 CHECK(active IN (0, 1));
|
||||
|
||||
ALTER TABLE shopping_locations
|
||||
ADD active TINYINT NOT NULL DEFAULT 1 CHECK(active IN (0, 1));
|
||||
|
||||
ALTER TABLE quantity_units
|
||||
ADD active TINYINT NOT NULL DEFAULT 1 CHECK(active IN (0, 1));
|
||||
|
||||
ALTER TABLE product_groups
|
||||
ADD active TINYINT NOT NULL DEFAULT 1 CHECK(active IN (0, 1));
|
||||
|
||||
ALTER TABLE task_categories
|
||||
ADD active TINYINT NOT NULL DEFAULT 1 CHECK(active IN (0, 1));
|
Reference in New Issue
Block a user