| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import { batchedUpdate } from '@overleaf/mongo-utils/batchedUpdate.js'
- const tags = ['saas']
- const migrate = async client => {
- const { db } = client
- await batchedUpdate(
- db.subscriptions,
- {
- 'teamInvites.0': {
- $exists: true,
- },
- },
- [
- {
- $set: {
- teamInvites: {
- $map: {
- input: '$teamInvites',
- in: {
- $mergeObjects: [
- '$$this',
- {
- email: {
- $toLower: '$$this.email',
- },
- },
- ],
- },
- },
- },
- },
- },
- ]
- )
- }
- const rollback = async () => {
- // There is no way back.
- }
- export default {
- tags,
- migrate,
- rollback,
- }
|