]> git.wh0rd.org - tt-rss.git/commitdiff
schema: add filter actions, fix typo in PG schema
authorAndrew Dolgov <fox@bah.spb.su>
Tue, 29 Nov 2005 18:30:08 +0000 (19:30 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Tue, 29 Nov 2005 18:30:08 +0000 (19:30 +0100)
schema/ttrss_schema_mysql.sql
schema/ttrss_schema_pgsql.sql

index 932e6f3a2e96ab852a45436b11a4fbf3843d37a9..7c08de59630ff29072deff2014c806a8f41fcdbc 100644 (file)
@@ -2,6 +2,7 @@ drop table if exists ttrss_version;
 drop table if exists ttrss_labels;
 drop table if exists ttrss_filters;
 drop table if exists ttrss_filter_types;
+drop table if exists ttrss_filter_actions;
 drop table if exists ttrss_user_prefs;
 drop table if exists ttrss_prefs;
 drop table if exists ttrss_prefs_types;
@@ -108,18 +109,31 @@ insert into ttrss_filter_types (id,name,description) values (3, 'both',
 insert into ttrss_filter_types (id,name,description) values (4, 'link', 
        'Link');
 
+create table ttrss_filter_actions (id integer not null primary key, 
+       name varchar(120) unique not null, 
+       description varchar(250) not null unique) TYPE=InnoDB;
+
+insert into ttrss_filter_actions (id,name,description) values (1, 'filter', 
+       'Filter article');
+
+insert into ttrss_filter_actions (id,name,description) values (2, 'catchup', 
+       'Mark as read');
+
 create table ttrss_filters (id integer not null primary key auto_increment,
        owner_uid integer not null, 
        feed_id integer default null,
        filter_type integer not null,
        reg_exp varchar(250) not null,
        description varchar(250) not null default '',
+       action_id integer not null default 1,
        index (filter_type),
        foreign key (filter_type) references ttrss_filter_types(id) ON DELETE CASCADE,
        index (owner_uid),
        foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
        index (feed_id),
-       foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE) TYPE=InnoDB;
+       foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE,
+       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, 
index e4e01f1b0d73e07a891745a6397ce11f30805ca9..dc4fd5eb846dc8b84248357bc1b005d6e3578bf5 100644 (file)
@@ -2,6 +2,7 @@ drop table ttrss_version;
 drop table ttrss_labels;
 drop table ttrss_filters;
 drop table ttrss_filter_types;
+drop table ttrss_filter_actions;
 drop table ttrss_user_prefs;
 drop table ttrss_prefs;
 drop table ttrss_prefs_types;
@@ -23,7 +24,7 @@ create table ttrss_users (id serial not null primary key,
        login varchar(120) not null unique,
        pwd_hash varchar(250) not null,
        last_login timestamp default null,
-       access_level integer not null default 0
+       access_level integer not null default 0,
        theme_id integer references ttrss_themes(id) default null);
 
 insert into ttrss_users (login,pwd_hash,access_level) values ('admin', 'password', 10);
@@ -102,12 +103,23 @@ insert into ttrss_filter_types (id,name,description) values (3, 'both',
 insert into ttrss_filter_types (id,name,description) values (4, 'link', 
        'Link');
 
+create table ttrss_filter_actions (id integer not null primary key, 
+       name varchar(120) unique not null, 
+       description varchar(250) not null unique);
+
+insert into ttrss_filter_actions (id,name,description) values (1, 'filter', 
+       'Filter article');
+
+insert into ttrss_filter_actions (id,name,description) values (2, 'catchup', 
+       'Mark as read');
+
 create table ttrss_filters (id serial not null primary key,    
        owner_uid integer not null references ttrss_users(id) on delete cascade,
        feed_id integer references ttrss_feeds(id) on delete cascade default null,
        filter_type integer not null references ttrss_filter_types(id), 
        reg_exp varchar(250) not null,
-       description varchar(250) not null default '');
+       description varchar(250) not null default '',
+       action_id integer not null default 1 references ttrss_filter_actions(id) on delete cascade);
 
 create table ttrss_labels (id serial not null primary key, 
        owner_uid integer not null references ttrss_users(id) on delete cascade,