Allow unlimited-size bios in profiles

This commit is contained in:
Evan Prodromou 2009-08-20 17:07:20 -04:00
parent 4b44308988
commit 2d6039fb69
2 changed files with 4 additions and 1 deletions

View File

@ -4,3 +4,6 @@ alter table notice
alter table message
modify column content text comment 'message content';
alter table profile
modify column bio text comment 'descriptive biography';

View File

@ -6,7 +6,7 @@ create table profile (
fullname varchar(255) comment 'display name',
profileurl varchar(255) comment 'URL, cached so we dont regenerate',
homepage varchar(255) comment 'identifying URL',
bio varchar(140) comment 'descriptive biography',
bio text comment 'descriptive biography',
location varchar(255) comment 'physical location',
created datetime not null comment 'date this record was created',
modified timestamp comment 'date this record was modified',