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'
|
2024-10-07 06:20:36 -04:00
|
|
|
import mongodb from '../app/src/infrastructure/mongodb.js'
|
|
|
|
const { getCollectionInternal } = mongodb
|
2021-07-21 06:34:09 -04:00
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
const tags = ['server-pro', 'saas']
|
2021-07-21 06:34:09 -04:00
|
|
|
|
|
|
|
const indexes = [
|
|
|
|
{
|
|
|
|
unique: true,
|
|
|
|
key: {
|
|
|
|
project_id: 1,
|
|
|
|
},
|
|
|
|
name: 'project_id_1',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: {
|
|
|
|
user_id: 1,
|
|
|
|
},
|
|
|
|
name: 'user_id_1',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: {
|
|
|
|
name: 1,
|
|
|
|
},
|
|
|
|
name: 'name_1',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2024-10-07 06:20:36 -04:00
|
|
|
async function getCollection() {
|
|
|
|
// NOTE: This is a stale collection, it will get dropped in a later migration.
|
|
|
|
return await getCollectionInternal('templates')
|
|
|
|
}
|
2021-07-21 06:34:09 -04:00
|
|
|
|
2024-10-07 06:20:36 -04:00
|
|
|
const migrate = async client => {
|
|
|
|
const collection = await getCollection()
|
|
|
|
await Helpers.addIndexesToCollection(collection, indexes)
|
2021-07-21 06:34:09 -04:00
|
|
|
}
|
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
const rollback = async client => {
|
2024-10-07 06:20:36 -04:00
|
|
|
const collection = await getCollection()
|
2021-07-21 06:34:09 -04:00
|
|
|
|
|
|
|
try {
|
2024-10-07 06:20:36 -04:00
|
|
|
await Helpers.dropIndexesFromCollection(collection, indexes)
|
2021-07-21 06:34:09 -04:00
|
|
|
} 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,
|
|
|
|
}
|