overleaf/services/web/migrations/20230207134844_group_invite_emails_to_lowercase.js

42 lines
762 B
JavaScript
Raw Normal View History

/* eslint-disable no-unused-vars */
const Helpers = require('./lib/helpers')
exports.tags = ['saas']
exports.migrate = async client => {
const { db } = client
db.subscriptions.updateMany(
{
'teamInvites.0': {
$exists: true,
},
},
[
{
$set: {
teamInvites: {
$map: {
input: '$teamInvites',
in: {
$mergeObjects: [
'$$this',
{
email: {
$toLower: '$$this.email',
},
},
],
},
},
},
},
},
]
)
}
exports.rollback = async client => {
// There is no way back.
}