mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
7 lines
207 B
SQL
7 lines
207 B
SQL
-- ConvertData
|
|
UPDATE "report"
|
|
SET "parameters" = CONCAT('"', REPLACE(parameters, '"', '\"'), '"');
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "report"
|
|
ALTER COLUMN "parameters" SET DATA TYPE JSONB USING parameters::JSONB;
|