Added a new product option "Should not be frozen" (closes #1320)

This commit is contained in:
Bernd Bestel
2021-07-12 19:27:21 +02:00
parent c048f403e6
commit 8cb8611b4f
5 changed files with 62 additions and 27 deletions

2
migrations/0146.sql Normal file
View File

@@ -0,0 +1,2 @@
ALTER TABLE products
ADD should_not_be_frozen TINYINT NOT NULL DEFAULT 0 CHECK(should_not_be_frozen IN (0, 1));