summaryrefslogtreecommitdiff
path: root/schema/versions/mysql/139.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/versions/mysql/139.sql')
-rw-r--r--schema/versions/mysql/139.sql13
1 files changed, 0 insertions, 13 deletions
diff --git a/schema/versions/mysql/139.sql b/schema/versions/mysql/139.sql
deleted file mode 100644
index 88dfb69c7..000000000
--- a/schema/versions/mysql/139.sql
+++ /dev/null
@@ -1,13 +0,0 @@
-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;