]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
allow unlimited text in messages in DB
authorEvan Prodromou <evan@controlyourself.ca>
Thu, 20 Aug 2009 21:02:25 +0000 (17:02 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Fri, 21 Aug 2009 10:33:21 +0000 (06:33 -0400)
db/08to09.sql
db/laconica.sql

index e8518a98dd125db0b7df83983c828ff22a027006..cad095169d508bd151f5d77a32431fc1261674bd 100644 (file)
@@ -1,3 +1,6 @@
 alter table notice
      modify column content text comment 'update content';
 
+alter table message
+     modify column content text comment 'message content';
+
index 8a1027d48994baca657f9ed0dbb7d18e358f8431..a59c5fe766d0bbfe7f9e8a43ff25ecbeca78bcef 100644 (file)
@@ -331,7 +331,7 @@ create table message (
     uri varchar(255) unique key comment 'universally unique identifier',
     from_profile integer not null comment 'who the message is from' references profile (id),
     to_profile integer not null comment 'who the message is to' references profile (id),
-    content varchar(140) comment 'message content',
+    content text comment 'message content',
     rendered text comment 'HTML version of the content',
     url varchar(255) comment 'URL of any attachment (image, video, bookmark, whatever)',
     created datetime not null comment 'date this record was created',