summaryrefslogtreecommitdiff
path: root/schema/versions
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-31 19:28:36 +0400
committerAndrew Dolgov <[email protected]>2013-03-31 19:28:36 +0400
commit5e736e4592d27107d69d9b7fbd19ae91b209956e (patch)
tree5ab7f9e709ce2d76ed5c53df60e92b023c58c2e5 /schema/versions
parent133420aa8d9bb2e30775e50f37738d628fc8f42c (diff)
implement stop action
Diffstat (limited to 'schema/versions')
-rw-r--r--schema/versions/mysql/113.sql8
-rw-r--r--schema/versions/pgsql/113.sql8
2 files changed, 16 insertions, 0 deletions
diff --git a/schema/versions/mysql/113.sql b/schema/versions/mysql/113.sql
new file mode 100644
index 000000000..3c0d00563
--- /dev/null
+++ b/schema/versions/mysql/113.sql
@@ -0,0 +1,8 @@
+begin;
+
+insert into ttrss_filter_actions (id,name,description) values (8, 'stop',
+ 'Stop / Do nothing');
+
+update ttrss_version set schema_version = 113;
+
+commit;
diff --git a/schema/versions/pgsql/113.sql b/schema/versions/pgsql/113.sql
new file mode 100644
index 000000000..3c0d00563
--- /dev/null
+++ b/schema/versions/pgsql/113.sql
@@ -0,0 +1,8 @@
+begin;
+
+insert into ttrss_filter_actions (id,name,description) values (8, 'stop',
+ 'Stop / Do nothing');
+
+update ttrss_version set schema_version = 113;
+
+commit;