| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /* eslint-disable no-unused-vars */
- import Helpers from './lib/helpers.mjs'
- const tags = ['server-ce', 'server-pro', 'saas']
- const indexes = [
- {
- key: {
- project_id: 1,
- },
- name: 'project_id_1',
- },
- {
- key: {
- ts: 1,
- },
- name: 'ts_1',
- expireAfterSeconds: 2592000,
- },
- ]
- const migrate = async client => {
- const { db } = client
- await Helpers.addIndexesToCollection(db.docSnapshots, indexes)
- }
- const rollback = async client => {
- const { db } = client
- try {
- await Helpers.dropIndexesFromCollection(db.docSnapshots, indexes)
- } catch (err) {
- console.error('Something went wrong rolling back the migrations', err)
- }
- }
- export default {
- tags,
- migrate,
- rollback,
- }
|