Skip to content
Snippets Groups Projects
Verified Commit 150e9658 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

add indexingmodels structure

parent 56f577c3
No related branches found
No related tags found
No related merge requests found
......@@ -2711,3 +2711,16 @@ CREATE TABLE convert_stack
CONSTRAINT convert_stack_pkey PRIMARY KEY (coll_id, res_id, convert_format)
)
WITH (OIDS=FALSE);
DROP TABLE IF EXISTS indexingmodels;
CREATE TABLE indexingmodels
(
id serial NOT NULL,
label character varying(255) NOT NULL,
fields_content text NOT NULL,
CONSTRAINT indexingmodels_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