summaryrefslogtreecommitdiff
path: root/ttrss_schema.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-26 06:11:41 +0100
committerAndrew Dolgov <[email protected]>2005-08-26 06:11:41 +0100
commita1ea1e12a86d18a987a4242320fa3081f5a1b979 (patch)
tree8da5c9a039f119672d6aeb741d757b3d7e29a405 /ttrss_schema.sql
parentb10e155060d8486af22eb5a29d2862972824cbef (diff)
support for comments attribute (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 0ee3a7558..e986a2685 100644
--- a/ttrss_schema.sql
+++ b/ttrss_schema.sql
@@ -38,5 +38,6 @@ create table ttrss_entries (id serial not null primary key,
last_read timestamp,
date_entered timestamp not null default NOW(),
no_orig_date boolean not null default false,
+ comments varchar(250) not null default '',
unread boolean not null default true);