From a30af6e46bf536442635094f6add54154c4048be Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Fri, 14 Aug 2015 12:37:08 +0200 Subject: allow up to 50 chars angeltype names (25 before) --- db/update.sql | 3 +++ 1 file changed, 3 insertions(+) (limited to 'db') 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; -- cgit v1.2.3-54-g00ecf