mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
be72e6ab19
Migrations: remove CE/SP tags from migration GitOrigin-RevId: 7fd668f01a9406e9574f0599f4034cbe72b3e8e8
37 lines
713 B
JavaScript
37 lines
713 B
JavaScript
/* eslint-disable no-unused-vars */
|
|
|
|
const Helpers = require('./lib/helpers')
|
|
|
|
exports.tags = ['saas']
|
|
|
|
const indexes = [
|
|
{
|
|
unique: true,
|
|
key: {
|
|
'subscription._id': 1,
|
|
},
|
|
name: 'subscription._id_1',
|
|
},
|
|
{
|
|
key: {
|
|
'subscription.admin_id': 1,
|
|
},
|
|
name: 'subscription.admin_id_1',
|
|
},
|
|
]
|
|
|
|
exports.migrate = async client => {
|
|
const { db } = client
|
|
|
|
await Helpers.addIndexesToCollection(db.deletedSubscriptions, indexes)
|
|
}
|
|
|
|
exports.rollback = async client => {
|
|
const { db } = client
|
|
|
|
try {
|
|
await Helpers.dropIndexesFromCollection(db.deletedSubscriptions, indexes)
|
|
} catch (err) {
|
|
console.error('Something went wrong rolling back the migrations', err)
|
|
}
|
|
}
|