From: Evan Prodromou Date: Thu, 20 Aug 2009 21:02:25 +0000 (-0400) Subject: allow unlimited text in messages in DB X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4ac0fe009fd1dbc61b8c7c605ba2c5b76e441f06;p=quix0rs-gnu-social.git allow unlimited text in messages in DB --- diff --git a/db/08to09.sql b/db/08to09.sql index e8518a98dd..cad095169d 100644 --- a/db/08to09.sql +++ b/db/08to09.sql @@ -1,3 +1,6 @@ alter table notice modify column content text comment 'update content'; +alter table message + modify column content text comment 'message content'; + diff --git a/db/laconica.sql b/db/laconica.sql index 8a1027d489..a59c5fe766 100644 --- a/db/laconica.sql +++ b/db/laconica.sql @@ -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',