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

FEAT #11312 TIME 0:05 Structure

parent 24302d1f
No related branches found
No related tags found
No related merge requests found
......@@ -2014,3 +2014,26 @@ CREATE TABLE custom_fields
CONSTRAINT custom_fields_unique_key UNIQUE (label)
)
WITH (OIDS=FALSE);
CREATE TABLE indexing_models
(
id SERIAL NOT NULL,
label character varying(256) NOT NULL,
"default" BOOLEAN NOT NULL,
owner INTEGER NOT NULL,
private BOOLEAN NOT NULL,
CONSTRAINT indexing_models_pkey PRIMARY KEY (id)
)
WITH (OIDS=FALSE);
CREATE TABLE indexing_models_fields
(
id SERIAL NOT NULL,
model_id INTEGER NOT NULL,
label character varying(256) NOT NULL,
mandatory BOOLEAN NOT NULL,
value text,
unit INTEGER,
CONSTRAINT indexing_models_fields_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