summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-28 03:05:34 +0100
committerAndrew Dolgov <[email protected]>2005-08-28 03:05:34 +0100
commit7fdd55fb41996a6c0d95a840399c6c8a634c2395 (patch)
tree633b4d03bb3f3a0f7a8d416410d353118086493b
parent2ca5f8c5c071a4f60c9ac7da46548a13299c5b1d (diff)
updated schema - make ttrss_entries.link not unique
-rw-r--r--ttrss_schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/ttrss_schema.sql b/ttrss_schema.sql
index 44d5994e2..8be0d3dae 100644
--- a/ttrss_schema.sql
+++ b/ttrss_schema.sql
@@ -32,7 +32,7 @@ create table ttrss_entries (id serial not null primary key,
updated timestamp not null,
title varchar(250) not null,
guid varchar(300) not null unique,
- link varchar(300) not null unique,
+ link varchar(300) not null,
content text not null,
content_hash varchar(250) not null,
last_read timestamp,