1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-29 09:51:28 +00:00

schema: add ttrss_labels2 color fields (bump schema)

This commit is contained in:
Andrew Dolgov
2009-01-26 10:41:16 +01:00
parent 56ff756447
commit aec57d7ad4
5 changed files with 33 additions and 3 deletions

View File

@@ -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
);