27 lines
643 B
JavaScript
27 lines
643 B
JavaScript
/* eslint-disable no-unused-vars */
|
|
|
|
import Helpers from './lib/helpers.mjs'
|
|
|
|
const tags = ['server-ce', 'server-pro', 'saas']
|
|
|
|
const migrate = async client => {
|
|
const { db } = client
|
|
// Are there migrations that need to run before this migration?
|
|
// Use the following helper to enforce the dependency:
|
|
//
|
|
// await Helpers.assertDependency('20200101000000_another_migration')
|
|
|
|
// await Helpers.addIndexesToCollection(db.wombats, [{ name: 1 }])
|
|
}
|
|
|
|
const rollback = async client => {
|
|
const { db } = client
|
|
// await Helpers.dropIndexesFromCollection(db.wombats, [{ name: 1 }])
|
|
}
|
|
|
|
export default {
|
|
tags,
|
|
migrate,
|
|
rollback,
|
|
}
|