schema: remove ttrss_labels
This commit is contained in:
parent
1c9c602534
commit
f054b5475b
2 changed files with 0 additions and 26 deletions
|
@ -213,19 +213,6 @@ create table ttrss_filters (id integer not null primary key auto_increment,
|
||||||
index (action_id),
|
index (action_id),
|
||||||
foreign key (action_id) references ttrss_filter_actions(id) ON DELETE CASCADE) TYPE=InnoDB;
|
foreign key (action_id) references ttrss_filter_actions(id) ON DELETE CASCADE) TYPE=InnoDB;
|
||||||
|
|
||||||
create table ttrss_labels (id integer not null primary key auto_increment,
|
|
||||||
owner_uid integer not null,
|
|
||||||
sql_exp text not null,
|
|
||||||
description varchar(250) not null,
|
|
||||||
index (owner_uid),
|
|
||||||
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;
|
|
||||||
|
|
||||||
insert into ttrss_labels (owner_uid,sql_exp,description) values (1,'unread = true',
|
|
||||||
'Unread articles');
|
|
||||||
|
|
||||||
insert into ttrss_labels (owner_uid,sql_exp,description) values (1,
|
|
||||||
'last_read is null and unread = false', 'Updated articles');
|
|
||||||
|
|
||||||
create table ttrss_tags (id integer primary key auto_increment,
|
create table ttrss_tags (id integer primary key auto_increment,
|
||||||
owner_uid integer not null,
|
owner_uid integer not null,
|
||||||
tag_name varchar(250) not null,
|
tag_name varchar(250) not null,
|
||||||
|
|
|
@ -191,19 +191,6 @@ create table ttrss_filters (id serial not null primary key,
|
||||||
action_id integer not null default 1 references ttrss_filter_actions(id) on delete cascade,
|
action_id integer not null default 1 references ttrss_filter_actions(id) on delete cascade,
|
||||||
action_param varchar(250) not null default '');
|
action_param varchar(250) not null default '');
|
||||||
|
|
||||||
create table ttrss_labels (id serial not null primary key,
|
|
||||||
owner_uid integer not null references ttrss_users(id) on delete cascade,
|
|
||||||
sql_exp text not null,
|
|
||||||
description varchar(250) not null);
|
|
||||||
|
|
||||||
create index ttrss_labels_owner_uid_index on ttrss_labels(owner_uid);
|
|
||||||
|
|
||||||
insert into ttrss_labels (owner_uid,sql_exp,description) values (1,'unread = true',
|
|
||||||
'Unread articles');
|
|
||||||
|
|
||||||
insert into ttrss_labels (owner_uid,sql_exp,description) values (1,
|
|
||||||
'last_read is null and unread = false', 'Updated articles');
|
|
||||||
|
|
||||||
create table ttrss_tags (id serial not null primary key,
|
create table ttrss_tags (id serial not null primary key,
|
||||||
tag_name varchar(250) not null,
|
tag_name varchar(250) not null,
|
||||||
owner_uid integer not null references ttrss_users(id) on delete cascade,
|
owner_uid integer not null references ttrss_users(id) on delete cascade,
|
||||||
|
|
Loading…
Reference in a new issue