Skip to content
Snippets Groups Projects
Commit f95d3f05 authored by Florian Azizian's avatar Florian Azizian
Browse files

sql for priority table

parent 09e9cdd6
No related branches found
No related tags found
No related merge requests found
-- *************************************************************************--
-- --
-- --
-- Model migration script - 17.06 to 17.XX --
-- --
-- --
-- *************************************************************************--
DROP SEQUENCE IF EXISTS priorities_seq CASCADE;
CREATE SEQUENCE priorities_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
DROP TABLE IF EXISTS priorities;
CREATE TABLE priorities
(
id bigint NOT NULL DEFAULT nextval('priorities_seq'::regclass),
label_priority character varying(128) NOT NULL,
color_priority character varying(255) DEFAULT NULL::character varying,
working_days character varying(1) DEFAULT NULL::character varying,
delays character varying(10) DEFAULT NULL::character varying,
CONSTRAINT priorities_pkey PRIMARY KEY (id)
)
WITH (OIDS=FALSE);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment