Upgrade DB to add DeviceToken model
This commit is contained in:
parent
ab53dbd409
commit
1cbacc9bb0
9 changed files with 4999 additions and 1 deletions
21
share/ddl/SQLite/upgrade/30-31/001-auto.sql
Normal file
21
share/ddl/SQLite/upgrade/30-31/001-auto.sql
Normal 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;
|
||||
|
Reference in a new issue