allow unlimited text in messages in DB

This commit is contained in:
Evan Prodromou 2009-08-20 17:02:25 -04:00
parent d213a8cf90
commit 4ac0fe009f
2 changed files with 4 additions and 1 deletions

View 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';

View 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',