diff --git a/ee/scripts/schema/db/init_dbs/postgresql/1.15.0/1.15.0.sql b/ee/scripts/schema/db/init_dbs/postgresql/1.15.0/1.15.0.sql index 0ad9bcb74..719d30ae9 100644 --- a/ee/scripts/schema/db/init_dbs/postgresql/1.15.0/1.15.0.sql +++ b/ee/scripts/schema/db/init_dbs/postgresql/1.15.0/1.15.0.sql @@ -165,6 +165,14 @@ WHERE jsonb_typeof(gdpr) = 'array'; ALTER TYPE issue_type ADD VALUE IF NOT EXISTS 'app_crash'; +UPDATE metrics +SET default_config='{ + "col": 4, + "row": 2, + "position": 0 +}'::jsonb +WHERE metric_type = 'pathAnalysis'; + COMMIT; \elif :is_next diff --git a/scripts/schema/db/init_dbs/postgresql/1.15.0/1.15.0.sql b/scripts/schema/db/init_dbs/postgresql/1.15.0/1.15.0.sql index ffffec871..6ee27c506 100644 --- a/scripts/schema/db/init_dbs/postgresql/1.15.0/1.15.0.sql +++ b/scripts/schema/db/init_dbs/postgresql/1.15.0/1.15.0.sql @@ -134,6 +134,14 @@ WHERE jsonb_typeof(gdpr) = 'array'; ALTER TYPE issue_type ADD VALUE IF NOT EXISTS 'app_crash'; +UPDATE metrics +SET default_config='{ + "col": 4, + "row": 2, + "position": 0 +}'::jsonb +WHERE metric_type = 'pathAnalysis'; + COMMIT; \elif :is_next