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

FEAT #12764 TIME 0:10 added owner column in list_templates

parent 09308d21
No related branches found
No related tags found
No related merge requests found
...@@ -562,6 +562,7 @@ CREATE TABLE list_templates ...@@ -562,6 +562,7 @@ CREATE TABLE list_templates
description text, description text,
type CHARACTER VARYING(32) NOT NULL, type CHARACTER VARYING(32) NOT NULL,
entity_id INTEGER, entity_id INTEGER,
owner INTEGER DEFAULT NULL,
CONSTRAINT list_templates_pkey PRIMARY KEY (id) CONSTRAINT list_templates_pkey PRIMARY KEY (id)
) )
WITH (OIDS=FALSE); WITH (OIDS=FALSE);
......
...@@ -1446,6 +1446,7 @@ CREATE TABLE list_templates ...@@ -1446,6 +1446,7 @@ CREATE TABLE list_templates
description text, description text,
type CHARACTER VARYING(32) NOT NULL, type CHARACTER VARYING(32) NOT NULL,
entity_id INTEGER, entity_id INTEGER,
owner INTEGER DEFAULT NULL,
CONSTRAINT list_templates_pkey PRIMARY KEY (id) CONSTRAINT list_templates_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