]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Allow unlimited-size bios in profiles
authorEvan Prodromou <evan@controlyourself.ca>
Thu, 20 Aug 2009 21:07:20 +0000 (17:07 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Fri, 21 Aug 2009 10:33:21 +0000 (06:33 -0400)
db/08to09.sql
db/laconica.sql

index cad095169d508bd151f5d77a32431fc1261674bd..83bb42e35a493e2830b40d380504bac847f6409c 100644 (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';
+
index a59c5fe766d0bbfe7f9e8a43ff25ecbeca78bcef..724877f92e4917e07c8cadeba9231141bff81f59 100644 (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',