summaryrefslogtreecommitdiff
path: root/schema/versions/mysql/101.sql
diff options
context:
space:
mode:
authorThomas Renard <[email protected]>2012-12-27 19:18:21 +0100
committerThomas Renard <[email protected]>2012-12-27 19:18:21 +0100
commit04d05dcc3f5d95ac1ba201820a4d10812b8068e7 (patch)
treeb5f96c4b999223eaacb5fb4f1d81ad2e849b1e9d /schema/versions/mysql/101.sql
parent4a0a3ca93ce2e1c360e3416fbddb0d666499baa8 (diff)
parent715a8239ac5cb67b49a2a66984303f27f11db2b3 (diff)
Merge remote-tracking branch 'upstream/master' into owncloud
Diffstat (limited to 'schema/versions/mysql/101.sql')
-rw-r--r--schema/versions/mysql/101.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/schema/versions/mysql/101.sql b/schema/versions/mysql/101.sql
new file mode 100644
index 000000000..47ff26522
--- /dev/null
+++ b/schema/versions/mysql/101.sql
@@ -0,0 +1,12 @@
+begin;
+
+create table ttrss_plugin_storage (
+ id integer not null auto_increment primary key,
+ name varchar(100) not null,
+ owner_uid integer not null,
+ content longtext not null,
+ foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
+
+update ttrss_version set schema_version = 101;
+
+commit;