From: Stéphane Jacob Date: Fri, 7 Jan 2011 20:18:23 +0000 (+0100) Subject: Fixes display of payments on xnet (Closes #1290). X-Git-Tag: xorg/1.0.2~36 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=5307098c174f88bcdb61e0d5133f520688d194f6;p=platal.git Fixes display of payments on xnet (Closes #1290). Signed-off-by: Stéphane Jacob --- diff --git a/ChangeLog b/ChangeLog index 58f7518..350c414 100644 --- 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 index 0000000..21aabab --- /dev/null +++ b/upgrade/1.0.2/08_xnet_payments.sql @@ -0,0 +1,3 @@ +ALTER TABLE group_event_participants MODIFY COLUMN paid FLOAT(10,2) NOT NULL DEFAULT 0; + +-- vim:set syntax=mysql: