proddashboard/dbscripts/auto/deploy_table_create.sql
2018-11-05 15:38:59 +05:00

23 lines
No EOL
527 B
SQL

/************************************************************
* Author : Geetha Nair<Geethanair@oliver-marketing.com
* Date : 28/April/2015
* Description : Create a table called deploy that holds details of db scripts run on master
*************************************************************/
-- Table: "deploy"
-- DROP TABLE "deploy";
CREATE TABLE "deploy"
(
"id" serial NOT NULL,
"sprint_id" integer,
"script_id" integer,
"status" boolean,
CONSTRAINT "deploy_pkey" PRIMARY KEY ("id")
)
WITH (
OIDS=FALSE
);