From: Vincent Zanotti Date: Wed, 2 Jul 2008 19:08:33 +0000 (+0200) Subject: Makes the 'last_version' field in auth_user_quick table version-independant. X-Git-Tag: xorg/0.9.17~67 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=34a7c8f2d08f403ed38f01e5a7bf96e3556209be;p=platal.git Makes the 'last_version' field in auth_user_quick table version-independant. Signed-off-by: Vincent Zanotti --- diff --git a/upgrade/0.9.17/04_last_version.sql b/upgrade/0.9.17/04_last_version.sql new file mode 100644 index 0000000..c3cde64 --- /dev/null +++ b/upgrade/0.9.17/04_last_version.sql @@ -0,0 +1,3 @@ +ALTER TABLE auth_user_quick MODIFY COLUMN last_version VARCHAR(16) NOT NULL DEFAULT ''; + +# vim:set syntax=mysql: