diff --git a/graphql/migrations/20250305092400-mongo44.js b/graphql/migrations/20250305092400-mongo44.js new file mode 100644 index 000000000..363aeb88a --- /dev/null +++ b/graphql/migrations/20250305092400-mongo44.js @@ -0,0 +1,9 @@ +exports.up = async function (db) { + return db._run('executeDbAdminCommand', { + setFeatureCompatibilityVersion: '4.4', + }) +} + +exports.down = function () { + return null +}