Fixes display of payments on xnet (Closes #1290).
authorStéphane Jacob <sj@m4x.org>
Fri, 7 Jan 2011 20:18:23 +0000 (21:18 +0100)
committerStéphane Jacob <sj@m4x.org>
Fri, 7 Jan 2011 20:18:23 +0000 (21:18 +0100)
Signed-off-by: Stéphane Jacob <sj@m4x.org>
ChangeLog
upgrade/1.0.2/08_xnet_payments.sql [new file with mode: 0644]

index 58f7518..350c414 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,7 @@ Bug/Wish:
         - #1355: Mode with propagation of the skinning mode                -FRU
 
     * Payments:
+        - #1290: Fixes display of payments on xnet                         -JAC
         - #1318: Fixes PHP errors in PayPal payments                       -JAC
 
     * Profile:
diff --git a/upgrade/1.0.2/08_xnet_payments.sql b/upgrade/1.0.2/08_xnet_payments.sql
new file mode 100644 (file)
index 0000000..21aabab
--- /dev/null
@@ -0,0 +1,3 @@
+ALTER TABLE group_event_participants MODIFY COLUMN paid FLOAT(10,2) NOT NULL DEFAULT 0;
+
+-- vim:set syntax=mysql: