summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-09-24 13:34:45 +0100
committerAndrew Dolgov <[email protected]>2005-09-24 13:34:45 +0100
commita0d5a39abbf58afdf23e71e8f7090f4e2772343f (patch)
treed1c6fc10177885a7ec379c89f6133c7b7ea547f6
parent0300750d2ce6a0252d6e014a3b52bad78ca0dadc (diff)
fix mysql (guid) schema bug
-rw-r--r--schema/ttrss_schema_mysql.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index b34f7070b..3c563e1f6 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,