summaryrefslogtreecommitdiff
path: root/ttrss_schema.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-25 14:04:57 +0100
committerAndrew Dolgov <[email protected]>2005-08-25 14:04:57 +0100
commitc3a8d71ad42e1cfc72db5bb0f43789935220e6db (patch)
tree3d9962a9c6d650a6e75f9efd21bcc0816ac74e11 /ttrss_schema.sql
parent9cfc649af5e3a397f530475a16a2ae51965e948b (diff)
more functional keyboard navigation, auto page flipping, updated README, auto post cleanup (PURGE_OLD_DAYS), schema updated
Diffstat (limited to 'ttrss_schema.sql')
-rw-r--r--ttrss_schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/ttrss_schema.sql b/ttrss_schema.sql
index 26ab01b27..cdc7abfb5 100644
--- a/ttrss_schema.sql
+++ b/ttrss_schema.sql
@@ -35,6 +35,7 @@ create table ttrss_entries (id serial not null primary key,
content text not null,
content_hash varchar(250) not null,
last_read timestamp,
+ date_entered timestamp not null default NOW(),
no_orig_date boolean not null default false,
unread boolean not null default true);