|
|
@@ -0,0 +1,31 @@
|
|
|
+/* eslint-disable no-unused-vars */
|
|
|
+
|
|
|
+import Helpers from './lib/helpers.mjs'
|
|
|
+
|
|
|
+const tags = ['server-ce', 'server-pro', 'saas']
|
|
|
+
|
|
|
+const indexes = [
|
|
|
+ {
|
|
|
+ key: {
|
|
|
+ project_id: 1,
|
|
|
+ thread_id: 1,
|
|
|
+ },
|
|
|
+ name: 'project_id_1_thread_id_1',
|
|
|
+ },
|
|
|
+]
|
|
|
+
|
|
|
+const migrate = async client => {
|
|
|
+ const { db } = client
|
|
|
+ await Helpers.addIndexesToCollection(db.rooms, indexes)
|
|
|
+}
|
|
|
+
|
|
|
+const rollback = async client => {
|
|
|
+ const { db } = client
|
|
|
+ await Helpers.dropIndexesFromCollection(db.rooms, indexes)
|
|
|
+}
|
|
|
+
|
|
|
+export default {
|
|
|
+ tags,
|
|
|
+ migrate,
|
|
|
+ rollback,
|
|
|
+}
|