From: Andrew Dolgov Date: Sat, 24 Sep 2005 12:34:45 +0000 (+0100) Subject: fix mysql (guid) schema bug X-Git-Tag: 1.0.7~74 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=a0d5a39abbf58afdf23e71e8f7090f4e2772343f;p=tt-rss.git fix mysql (guid) schema bug --- diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index b34f7070..3c563e1f 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -32,7 +32,7 @@ create table ttrss_entries (id integer not null primary key auto_increment, feed_id integer not null references ttrss_feeds(id) ON DELETE CASCADE, updated datetime not null, title text not null, - guid text not null unique, + guid varchar(255) not null unique, link text not null, content text not null, content_hash varchar(250) not null,