summaryrefslogtreecommitdiff
path: root/ttrss_schema.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-23 06:46:48 +0100
committerAndrew Dolgov <[email protected]>2005-08-23 06:46:48 +0100
commitb82af8c382441bddfb9fccf5828ff7e7c61682ac (patch)
tree5ef0cf6ce2cd18271e4e3f765064ed256c45b301 /ttrss_schema.sql
parent9d9c9dd645458b4332e7848a106e0593c6d28340 (diff)
use transactions in feed update process, better handle feeds without entry dates (schema updated)
Diffstat (limited to 'ttrss_schema.sql')
-rw-r--r--ttrss_schema.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/ttrss_schema.sql b/ttrss_schema.sql
index 20237ce7e..fec7e4cfe 100644
--- a/ttrss_schema.sql
+++ b/ttrss_schema.sql
@@ -34,5 +34,6 @@ create table ttrss_entries (id serial not null primary key,
md5_hash varchar(200) not null unique,
content text not null,
last_read timestamp,
- unread boolean default true);
+ no_orig_date boolean not null default false,
+ unread boolean not null default true);