diff options
author | Philip Häusler <msquare@notrademark.de> | 2015-08-14 12:37:08 +0200 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2015-08-14 12:37:08 +0200 |
commit | a30af6e46bf536442635094f6add54154c4048be (patch) | |
tree | 5bfcadf82b602da313b023e49f65d0ec0bdcb3db /db/update.sql | |
parent | 41280a17f5a51030c158b30db88aa22aae94e282 (diff) |
allow up to 50 chars angeltype names (25 before)
Diffstat (limited to 'db/update.sql')
-rw-r--r-- | db/update.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/db/update.sql b/db/update.sql index e57220fb..4ae7d295 100644 --- a/db/update.sql +++ b/db/update.sql @@ -1,3 +1,6 @@ +/* Allow longer angeltype names */ +ALTER TABLE `AngelTypes` CHANGE `name` `name` VARCHAR( 50 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ''; + /* Enable multiple vouchers */ ALTER TABLE `User` CHANGE `got_voucher` `got_voucher` INT NOT NULL; |