From: Evan Prodromou Date: Thu, 20 Aug 2009 21:07:20 +0000 (-0400) Subject: Allow unlimited-size bios in profiles X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2d6039fb69772dec233df8fbf8fdc2c6d492e86b;p=quix0rs-gnu-social.git Allow unlimited-size bios in profiles --- diff --git a/db/08to09.sql b/db/08to09.sql index cad095169d..83bb42e35a 100644 --- a/db/08to09.sql +++ b/db/08to09.sql @@ -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'; + diff --git a/db/laconica.sql b/db/laconica.sql index a59c5fe766..724877f92e 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',