summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-26 10:41:16 +0100
committerAndrew Dolgov <[email protected]>2009-01-26 10:41:16 +0100
commitaec57d7ad4a0eb3a62743d54e69e1a4cc3dd74ea (patch)
treebcb0eea42ce94df578e996b04174bca367d30bd6 /schema/ttrss_schema_pgsql.sql
parent56ff7564477b7c72a8c82fd64b59fe53e3321470 (diff)
schema: add ttrss_labels2 color fields (bump schema)
Diffstat (limited to 'schema/ttrss_schema_pgsql.sql')
-rw-r--r--schema/ttrss_schema_pgsql.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index f5907210d..f42d519c2 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -200,7 +200,7 @@ create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
create table ttrss_version (schema_version int not null);
-insert into ttrss_version values (52);
+insert into ttrss_version values (53);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,
@@ -353,6 +353,8 @@ create table ttrss_feedbrowser_cache (
create table ttrss_labels2 (id serial not null primary key,
owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
+ fg_color varchar(15) not null default '',
+ bg_color varchar(15) not null default '',
caption varchar(250) not null
);