From: Stéphane Jacob Date: Sun, 29 Apr 2012 16:17:14 +0000 (+0200) Subject: Increases payment name length limit (Closes #1615). X-Git-Tag: xorg/1.1.5~7 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=5eb81e64f727ba93d7f52f5250402ee7770b0500;p=platal.git Increases payment name length limit (Closes #1615). Signed-off-by: Stéphane Jacob --- diff --git a/ChangeLog b/ChangeLog index f9a113d..4e9d106 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,6 +14,9 @@ Bug/Wish: - #1597: Fixes reactivation of broken and suspended emails -JAC - #1601: Displays errors and warnings when adding people to ML -JAC + * Payments: + - #1615: Increases payment name length limit -JAC + * Profile: - #1589: Fixes clicks on main jobTree titles -JAC diff --git a/upgrade/1.1.5/08_payments.sql b/upgrade/1.1.5/08_payments.sql new file mode 100644 index 0000000..23b1b0c --- /dev/null +++ b/upgrade/1.1.5/08_payments.sql @@ -0,0 +1,3 @@ +ALTER TABLE payments MODIFY COLUMN text VARCHAR(255) NOT NULL DEFAULT ''; + +-- vim:set syntax=mysql: