diff --git a/migration/19.12/1912.sql b/migration/19.12/1912.sql
index f8149032943c1a849dadd55aed4d4404d8bf55a0..6b08fbb66a5a29f6550477aa50f0a8f5b4a82e0e 100644
--- a/migration/19.12/1912.sql
+++ b/migration/19.12/1912.sql
@@ -562,6 +562,7 @@ CREATE TABLE list_templates
     description text,
     type CHARACTER VARYING(32) NOT NULL,
     entity_id INTEGER,
+    owner INTEGER DEFAULT NULL,
     CONSTRAINT list_templates_pkey PRIMARY KEY (id)
 )
 WITH (OIDS=FALSE);
diff --git a/sql/structure.sql b/sql/structure.sql
index 07c46f625e9162d0232cc7d8fe6a459148eb7708..15989b07b7579eb052703c5fd9997d8ce40843c8 100755
--- a/sql/structure.sql
+++ b/sql/structure.sql
@@ -1446,6 +1446,7 @@ CREATE TABLE list_templates
     description text,
     type CHARACTER VARYING(32) NOT NULL,
     entity_id INTEGER,
+    owner INTEGER DEFAULT NULL,
     CONSTRAINT list_templates_pkey PRIMARY KEY (id)
 )
 WITH (OIDS=FALSE);