summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2015-08-12 23:44:39 +0200
committerPhilip Häusler <msquare@notrademark.de>2015-08-12 23:44:39 +0200
commit803c0a552f2bf3eaab1a88efa3785a985a258277 (patch)
tree6d759a47170cf2e0fe51f9de5b35d2ce85845b3c /db
parent681d52fe0f8a124904f97e7966ed2ee1b73124d2 (diff)
make multiple vouchers possible
Diffstat (limited to 'db')
-rw-r--r--db/update.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/db/update.sql b/db/update.sql
index 2e03c3d9..e57220fb 100644
--- a/db/update.sql
+++ b/db/update.sql
@@ -1,3 +1,5 @@
+/* Enable multiple vouchers */
+ALTER TABLE `User` CHANGE `got_voucher` `got_voucher` INT NOT NULL;
/* introduce user arrival date */
ALTER TABLE `User` ADD `arrival_date` INT NULL ,