This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Foodloop-Server/share/ddl/PostgreSQL/upgrade/30-31/001-auto.sql

23 lines
564 B
PL/PgSQL

-- 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" serial NOT NULL,
"user_id" integer NOT NULL,
"token" character varying(200) NOT NULL,
"register_date" timestamp NOT NULL,
PRIMARY KEY ("id")
);
CREATE INDEX "device_tokens_idx_user_id" on "device_tokens" ("user_id");
;
ALTER TABLE "device_tokens" ADD CONSTRAINT "device_tokens_fk_user_id" FOREIGN KEY ("user_id")
REFERENCES "users" ("id") ON DELETE NO ACTION ON UPDATE NO ACTION;
;
COMMIT;