Skip to content
Snippets Groups Projects
Commit acd354f1 authored by Guillaume Heurtier's avatar Guillaume Heurtier
Browse files

FEAT #11996 TIME 0:30 added enabled column in indexing_models

parent 33ba8709
No related branches found
No related tags found
No related merge requests found
...@@ -140,6 +140,7 @@ CREATE TABLE indexing_models ...@@ -140,6 +140,7 @@ CREATE TABLE indexing_models
owner INTEGER NOT NULL, owner INTEGER NOT NULL,
private BOOLEAN NOT NULL, private BOOLEAN NOT NULL,
master INTEGER DEFAULT NULL, master INTEGER DEFAULT NULL,
enabled BOOLEAN DEFAULT TRUE NOT NULL,
CONSTRAINT indexing_models_pkey PRIMARY KEY (id) CONSTRAINT indexing_models_pkey PRIMARY KEY (id)
) )
WITH (OIDS=FALSE); WITH (OIDS=FALSE);
......
...@@ -1877,6 +1877,7 @@ CREATE TABLE indexing_models ...@@ -1877,6 +1877,7 @@ CREATE TABLE indexing_models
owner INTEGER NOT NULL, owner INTEGER NOT NULL,
private BOOLEAN NOT NULL, private BOOLEAN NOT NULL,
master INTEGER DEFAULT NULL, master INTEGER DEFAULT NULL,
enabled BOOLEAN DEFAULT TRUE NOT NULL,
CONSTRAINT indexing_models_pkey PRIMARY KEY (id) CONSTRAINT indexing_models_pkey PRIMARY KEY (id)
) )
WITH (OIDS=FALSE); 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