Add an option to make Userfields mandatory (closes #1339)

This commit is contained in:
Bernd Bestel
2021-07-11 22:05:08 +02:00
parent 21c221b520
commit 6659a5cd08
6 changed files with 74 additions and 15 deletions

2
migrations/0145.sql Normal file
View File

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