Revert non-trivial changes to upgrade scripts

This commit is contained in:
Erik Johnston 2015-04-10 10:19:50 +01:00
parent e2722f58ee
commit cda4a6f93f
3 changed files with 5 additions and 5 deletions

View file

@ -14,7 +14,7 @@
*/
CREATE TABLE IF NOT EXISTS application_services(
id BIGINT PRIMARY KEY,
id BIGINT PRIMARY KEY AUTOINCREMENT,
url VARCHAR(150),
token VARCHAR(150),
hs_token VARCHAR(150),
@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS application_services(
);
CREATE TABLE IF NOT EXISTS application_services_regex(
id BIGINT PRIMARY KEY,
id BIGINT PRIMARY KEY AUTOINCREMENT,
as_id BIGINT NOT NULL,
namespace INTEGER, /* enum[room_id|room_alias|user_id] */
regex VARCHAR(150),