summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-12-13 12:57:01 +0100
committerAndrew Dolgov <[email protected]>2008-12-13 12:57:01 +0100
commit75fa1e31266b55ea502876dae9b14474bd58bf9a (patch)
treea376cba44b28ba963f613f4fba3079272aabff30 /schema
parent3286e486b9b8477909178a6982b880706e61bc72 (diff)
schema: add new filter type (refs #225)
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql4
-rw-r--r--schema/ttrss_schema_pgsql.sql4
-rw-r--r--schema/versions/mysql/46.sql4
-rw-r--r--schema/versions/pgsql/46.sql5
4 files changed, 15 insertions, 2 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index e4fdfcca3..6934440a6 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -154,6 +154,8 @@ 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');
+insert into ttrss_filter_types (id,name,description) values (5, 'date',
+ 'Article Date');
create table ttrss_filter_actions (id integer not null primary key,
name varchar(120) unique not null,
@@ -219,7 +221,7 @@ create table ttrss_tags (id integer primary key auto_increment,
create table ttrss_version (schema_version int not null) TYPE=InnoDB;
-insert into ttrss_version values (45);
+insert into ttrss_version values (46);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index 5b40fab33..2efcaf7f0 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -141,6 +141,8 @@ 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');
+insert into ttrss_filter_types (id,name,description) values (5, 'date',
+ 'Article Date');
create table ttrss_filter_actions (id integer not null primary key,
name varchar(120) unique not null,
@@ -196,7 +198,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 (45);
+insert into ttrss_version values (46);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,
diff --git a/schema/versions/mysql/46.sql b/schema/versions/mysql/46.sql
new file mode 100644
index 000000000..8bf25629a
--- /dev/null
+++ b/schema/versions/mysql/46.sql
@@ -0,0 +1,4 @@
+insert into ttrss_filter_types (id,name,description) values (5, 'date',
+ 'Article Date');
+
+update ttrss_version set schema_version = 46;
diff --git a/schema/versions/pgsql/46.sql b/schema/versions/pgsql/46.sql
new file mode 100644
index 000000000..007824f7a
--- /dev/null
+++ b/schema/versions/pgsql/46.sql
@@ -0,0 +1,5 @@
+
+insert into ttrss_filter_types (id,name,description) values (5, 'date',
+ 'Article Date');
+
+update ttrss_version set schema_version = 46;