diff --git a/services/web/migrations/20220826104236_disable_alpha_beta_program.js b/services/web/migrations/20220826104236_disable_alpha_beta_program.js new file mode 100644 index 0000000000..db8039f339 --- /dev/null +++ b/services/web/migrations/20220826104236_disable_alpha_beta_program.js @@ -0,0 +1,11 @@ +exports.tags = ['server-ce', 'server-pro'] + +exports.migrate = async client => { + const { db } = client + await db.users.updateMany( + {}, + { $set: { alphaProgram: false, betaProgram: false } } + ) +} + +exports.rollback = async () => {}