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

4 lines
217 B
MySQL
Raw Normal View History

-- Add the supportsProfiler field to the MongoDB connection configuration
UPDATE dbservice_entity
SET json = jsonb_set(json::jsonb, '{connection,config,supportsProfiler}', 'true'::jsonb)
WHERE serviceType = 'MongoDB';