Remove size restriction on freetext field (255 is really too short)
authorFlorent Bruneau <florent.bruneau@polytechnique.org>
Mon, 21 Jan 2008 20:14:23 +0000 (21:14 +0100)
committerFlorent Bruneau <florent.bruneau@polytechnique.org>
Mon, 21 Jan 2008 20:14:23 +0000 (21:14 +0100)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
upgrade/0.9.16/00_profile.sql

index 3afd0a8..8e37d18 100644 (file)
@@ -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: