summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-21 08:38:28 +0100
committerAndrew Dolgov <[email protected]>2005-11-21 08:38:28 +0100
commit3a933f22b1c0107e240327c9f9ceae1881920d6a (patch)
tree4f638509182cf2866a536259dd36770c31b6d257 /schema
parentfe99ab12bb0fbbab3dc513e421d9c29536fb15d6 (diff)
filters are now actually applied separately for each user
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql2
-rw-r--r--schema/ttrss_schema_pgsql.sql2
2 files changed, 4 insertions, 0 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 3b1a18b4c..e2b9c7050 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -77,6 +77,8 @@ insert into ttrss_filter_types (id,name,description) values (1, 'title', 'Title'
insert into ttrss_filter_types (id,name,description) values (2, 'content', 'Content');
insert into ttrss_filter_types (id,name,description) values (3, 'both',
'Title or Content');
+insert into ttrss_filter_types (id,name,description) values (4, 'link',
+ 'Link');
create table ttrss_filters (id integer not null primary key auto_increment,
owner_uid integer not null,
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index a6c19bedb..f7461d902 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -78,6 +78,8 @@ insert into ttrss_filter_types (id,name,description) values (1, 'title', 'Title'
insert into ttrss_filter_types (id,name,description) values (2, 'content', 'Content');
insert into ttrss_filter_types (id,name,description) values (3, 'both',
'Title or Content');
+insert into ttrss_filter_types (id,name,description) values (4, 'link',
+ 'Link');
create table ttrss_filters (id serial not null primary key,
owner_uid integer not null references ttrss_users(id) on delete cascade,