Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
336 B
MySQL
Raw Normal View History

-- Migrate 'QlikSenseDataModel' & 'QlikCloudDataModel' into single entity 'QlikDataModel'
UPDATE dashboard_data_model_entity
SET json = jsonb_set(
json,
'{dataModelType}',
'"QlikDataModel"',
true
)
WHERE json->>'dataModelType' IN ('QlikSenseDataModel', 'QlikCloudDataModel');