updated schema - make ttrss_entries.link not unique

This commit is contained in:
Andrew Dolgov 2005-08-28 03:05:34 +01:00
parent 2ca5f8c5c0
commit 7fdd55fb41
1 changed files with 1 additions and 1 deletions

View File

@ -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,