summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorjwacalex <aboehm@dompfaffenweg.de>2016-11-17 23:14:39 +0100
committerjwacalex <aboehm@dompfaffenweg.de>2016-11-30 23:20:13 +0100
commit79b9f9448e4f3ad7abb8d795c1404b3221c95bf9 (patch)
treea7e532e379ce4cf9e35d1aa516d0650e61963a9c /db
parent356cc9e1d0e01bad88cb29f3b143e4ae7156695b (diff)
initial commit and functionality for no self sign up
Diffstat (limited to 'db')
-rw-r--r--db/update.sql5
1 files changed, 4 insertions, 1 deletions
diff --git a/db/update.sql b/db/update.sql
index 93f29e89..5682f1ee 100644
--- a/db/update.sql
+++ b/db/update.sql
@@ -3,4 +3,7 @@ INSERT INTO `GroupPrivileges` (`id`, `group_id`, `privilege_id`) VALUES (NULL, '
ALTER TABLE `UserAngelTypes` CHANGE `coordinator` `supporter` BOOLEAN;
-ALTER TABLE `User` ADD COLUMN `email_by_human_allowed` BOOLEAN NOT NULL; \ No newline at end of file
+ALTER TABLE `User` ADD COLUMN `email_by_human_allowed` BOOLEAN NOT NULL;
+
+-- No Self Sign Up for some Angel Types
+ALTER TABLE engelsystem.AngelTypes ADD no_self_signup TINYINT(1) NOT NULL; \ No newline at end of file