]> git.wh0rd.org Git - tt-rss.git/commitdiff
fix mysql (guid) schema bug
authorAndrew Dolgov <fox@bah.spb.su>
Sat, 24 Sep 2005 12:34:45 +0000 (13:34 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Sat, 24 Sep 2005 12:34:45 +0000 (13:34 +0100)
schema/ttrss_schema_mysql.sql

index b34f7070b6793616e871684b8e8f9184df6bfda8..3c563e1f6ecacbc879b635ddb60a8985b9f5f530 100644 (file)
@@ -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,