diff options
author | Brenda Wallace <shiny@cpan.org> | 2009-08-11 09:25:13 +1200 |
---|---|---|
committer | Brenda Wallace <shiny@cpan.org> | 2009-08-11 09:25:13 +1200 |
commit | 002cc755b2a521486b0216e2d6f8a3952bda0bae (patch) | |
tree | 2ac330eec7f5f177bc5530a57f82c9504b8d95da /db/laconica.sql | |
parent | 91399d89dd6f1bd4447690fc6e87c2ffba81f2b4 (diff) |
change file.url to from a varchar(255) to varchar(2047)
because urls get translated from tinyurl.com etc into their originals before saving
and urls can be that long
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 f01107176..ff8c4c13e 100644 --- a/db/laconica.sql +++ b/db/laconica.sql @@ -433,7 +433,7 @@ create table group_inbox ( create table file ( id integer primary key auto_increment, - url varchar(255) comment 'destination URL after following redirections', + url varchar(2047) comment 'destination URL after following redirections', mimetype varchar(50) comment 'mime type of resource', size integer comment 'size of resource when available', title varchar(255) comment 'title of resource when available', |