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

@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS rejections(
-- Push notification endpoints that users have configured
CREATE TABLE IF NOT EXISTS pushers (
id BIGINT PRIMARY KEY,
id BIGINT PRIMARY KEY AUTOINCREMENT,
user_name VARCHAR(150) NOT NULL,
profile_tag VARCHAR(32) NOT NULL,
kind VARCHAR(8) NOT NULL,
@ -40,7 +40,7 @@ CREATE TABLE IF NOT EXISTS pushers (
);
CREATE TABLE IF NOT EXISTS push_rules (
id BIGINT PRIMARY KEY,
id BIGINT PRIMARY KEY AUTOINCREMENT,
user_name VARCHAR(150) NOT NULL,
rule_id VARCHAR(150) NOT NULL,
priority_class TINYINT NOT NULL,