2021-07-21 06:34:09 -04:00
|
|
|
/* eslint-disable no-unused-vars */
|
|
|
|
|
|
|
|
const Helpers = require('./lib/helpers')
|
|
|
|
|
2021-08-19 05:37:49 -04:00
|
|
|
exports.tags = ['saas']
|
2021-07-21 06:34:09 -04:00
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|