2021-07-21 06:34:09 -04:00
|
|
|
/* eslint-disable no-unused-vars */
|
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
import Helpers from './lib/helpers.mjs'
|
2021-07-21 06:34:09 -04:00
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
const 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',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
const migrate = async client => {
|
2021-07-21 06:34:09 -04:00
|
|
|
const { db } = client
|
|
|
|
|
|
|
|
await Helpers.addIndexesToCollection(db.deletedSubscriptions, indexes)
|
|
|
|
}
|
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
const rollback = async client => {
|
2021-07-21 06:34:09 -04:00
|
|
|
const { db } = client
|
|
|
|
|
|
|
|
try {
|
|
|
|
await Helpers.dropIndexesFromCollection(db.deletedSubscriptions, indexes)
|
|
|
|
} catch (err) {
|
|
|
|
console.error('Something went wrong rolling back the migrations', err)
|
|
|
|
}
|
|
|
|
}
|
2024-10-02 05:32:13 -04:00
|
|
|
|
|
|
|
export default {
|
|
|
|
tags,
|
|
|
|
migrate,
|
|
|
|
rollback,
|
|
|
|
}
|