summaryrefslogtreecommitdiff
path: root/sql/mysql/migrations/139.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql/mysql/migrations/139.sql')
-rw-r--r--sql/mysql/migrations/139.sql13
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/mysql/migrations/139.sql b/sql/mysql/migrations/139.sql
new file mode 100644
index 000000000..88dfb69c7
--- /dev/null
+++ b/sql/mysql/migrations/139.sql
@@ -0,0 +1,13 @@
+begin;
+
+create table ttrss_app_passwords (id integer not null primary key auto_increment,
+ title varchar(250) not null,
+ pwd_hash text not null,
+ service varchar(100) not null,
+ created datetime not null,
+ last_used datetime default null,
+ owner_uid integer not null references ttrss_users(id) on delete cascade) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
+
+update ttrss_version set schema_version = 139;
+
+commit;