]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
update database to allow large posts
authorEvan Prodromou <evan@controlyourself.ca>
Thu, 20 Aug 2009 20:53:00 +0000 (16:53 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Fri, 21 Aug 2009 10:33:20 +0000 (06:33 -0400)
db/08to09.sql
db/laconica.sql

index 892df4a39f626e72dd850aeb89929ad7221efef2..e8518a98dd125db0b7df83983c828ff22a027006 100644 (file)
@@ -1,2 +1,3 @@
-// SQL commands to update an 0.8.x version of Laconica
-// to 0.9.x.
+alter table notice
+     modify column content text comment 'update content';
+
index f0110717606304fbdf228fd9303edcf73670191a..8a1027d48994baca657f9ed0dbb7d18e358f8431 100644 (file)
@@ -110,7 +110,7 @@ create table notice (
     id integer auto_increment primary key comment 'unique identifier',
     profile_id integer not null comment 'who made the update' references profile (id),
     uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
-    content varchar(140) comment 'update content',
+    content text comment 'update 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',