summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index e88bde876..b34f7070b 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -32,8 +32,8 @@ 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 varchar(250) not null unique,
- link varchar(250) not null,
+ guid text not null unique,
+ link text not null,
content text not null,
content_hash varchar(250) not null,
last_read datetime,