diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-08-20 17:07:20 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-08-21 06:33:21 -0400 |
commit | 2d6039fb69772dec233df8fbf8fdc2c6d492e86b (patch) | |
tree | 1ef6cd4cf6338167371b185416ce92a893e23199 /db/laconica.sql | |
parent | 4b443089884a30806aa5a3d00665fbd6296ccd43 (diff) |
Allow unlimited-size bios in profiles
Diffstat (limited to 'db/laconica.sql')
-rw-r--r-- | db/laconica.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/laconica.sql b/db/laconica.sql index a59c5fe76..724877f92 100644 --- a/db/laconica.sql +++ b/db/laconica.sql @@ -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', |