From 4ac0fe009fd1dbc61b8c7c605ba2c5b76e441f06 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 20 Aug 2009 17:02:25 -0400 Subject: [PATCH] allow unlimited text in messages in DB --- db/08to09.sql | 3 +++ db/laconica.sql | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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', -- 2.39.2