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

schema: remove ttrss_labels

This commit is contained in:
Andrew Dolgov
2009-01-18 16:42:07 +01:00
parent 1c9c602534
commit f054b5475b
2 changed files with 0 additions and 26 deletions

View File

@@ -213,19 +213,6 @@ create table ttrss_filters (id integer not null primary key auto_increment,
index (action_id),
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,
owner_uid integer not null,
tag_name varchar(250) not null,