Skip to content
Snippets Groups Projects
Verified Commit 4f506d68 authored by Damien's avatar Damien
Browse files

FEAT #9104 export pdf sql

parent 287441d2
No related branches found
No related tags found
No related merge requests found
......@@ -101,10 +101,11 @@ CREATE TABLE exports_templates
(
id serial NOT NULL,
user_id INTEGER NOT NULL,
delimiter character varying(3) NOT NULL,
delimiter character varying(3),
type character varying(3) NOT NULL,
data json DEFAULT '[]' NOT NULL,
CONSTRAINT exports_templates_pkey PRIMARY KEY (id),
CONSTRAINT exports_templates_unique_key UNIQUE (user_id)
CONSTRAINT exports_templates_unique_key UNIQUE (user_id, type)
)
WITH (OIDS=FALSE);
......
......@@ -2188,9 +2188,11 @@ CREATE TABLE exports_templates
(
id serial NOT NULL,
user_id INTEGER NOT NULL,
delimiter character varying(3) NOT NULL,
delimiter character varying(3),
type character varying(3) NOT NULL,
data json DEFAULT '[]' NOT NULL,
CONSTRAINT exports_templates_pkey PRIMARY KEY (id),
CONSTRAINT exports_templates_unique_key UNIQUE (user_id)
CONSTRAINT exports_templates_unique_key UNIQUE (user_id, type)
)
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