Increases payment name length limit (Closes #1615).
authorStéphane Jacob <sj@m4x.org>
Sun, 29 Apr 2012 16:17:14 +0000 (18:17 +0200)
committerStéphane Jacob <sj@m4x.org>
Sun, 29 Apr 2012 16:17:25 +0000 (18:17 +0200)
Signed-off-by: Stéphane Jacob <sj@m4x.org>
ChangeLog
upgrade/1.1.5/08_payments.sql [new file with mode: 0644]

index f9a113d..4e9d106 100644 (file)
--- 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 (file)
index 0000000..23b1b0c
--- /dev/null
@@ -0,0 +1,3 @@
+ALTER TABLE payments MODIFY COLUMN text VARCHAR(255) NOT NULL DEFAULT '';
+
+-- vim:set syntax=mysql: