From bb25f137fc85caf3ab7865fc5b08905ab86bb0f3 Mon Sep 17 00:00:00 2001 From: Albert Bofill Date: Thu, 29 Aug 2024 11:57:19 +0200 Subject: [PATCH] enhacement(config_style): set is_templayer default false --- updates/36/36012/utils/ddl.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updates/36/36012/utils/ddl.sql b/updates/36/36012/utils/ddl.sql index cf77348abe..d45dce5ba3 100644 --- a/updates/36/36012/utils/ddl.sql +++ b/updates/36/36012/utils/ddl.sql @@ -95,7 +95,7 @@ CREATE TABLE config_style ( descript text NULL, sys_role varchar(30) NULL, addparam json NULL, - is_templayer bool NULL, + is_templayer bool DEFAULT false NULL, active bool DEFAULT true NULL, CONSTRAINT config_style_pkey PRIMARY KEY (id));