Upgrade DB to add DeviceToken model

This commit is contained in:
Ben Goldsworthy 2020-11-18 22:59:50 +00:00
parent ab53dbd409
commit 1cbacc9bb0
9 changed files with 4999 additions and 1 deletions

View file

@ -0,0 +1,21 @@
-- Convert schema 'share/ddl/_source/deploy/30/001-auto.yml' to 'share/ddl/_source/deploy/31/001-auto.yml':;
;
BEGIN;
;
CREATE TABLE device_tokens (
id INTEGER PRIMARY KEY NOT NULL,
user_id integer NOT NULL,
token varchar(200) NOT NULL,
register_date datetime NOT NULL,
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE NO ACTION ON UPDATE NO ACTION
);
;
CREATE INDEX device_tokens_idx_user_id ON device_tokens (user_id);
;
COMMIT;