From: Florent Bruneau Date: Mon, 21 Jan 2008 20:14:23 +0000 (+0100) Subject: Remove size restriction on freetext field (255 is really too short) X-Git-Tag: xorg/0.9.16~162 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=acee3022f46bd4ca24fe84fea115b16457ad01e2;p=platal.git Remove size restriction on freetext field (255 is really too short) Signed-off-by: Florent Bruneau --- diff --git a/upgrade/0.9.16/00_profile.sql b/upgrade/0.9.16/00_profile.sql index 3afd0a8..8e37d18 100644 --- a/upgrade/0.9.16/00_profile.sql +++ b/upgrade/0.9.16/00_profile.sql @@ -7,4 +7,7 @@ create table watch_profile ( primary key field (uid, field) ) charset=utf8; + +alter table auth_user_quick change column profile_freetext profile_freetext mediumtext; + # vim:set syntax=mysql: