mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
6ee5f6a0a0
Extract user feature set to analytics GitOrigin-RevId: 41d25c9f32a01ffb27cf66217418d6014b20e841
22 lines
439 B
JavaScript
22 lines
439 B
JavaScript
/* eslint-disable no-unused-vars */
|
|
|
|
const Helpers = require('./lib/helpers')
|
|
|
|
exports.tags = ['saas']
|
|
|
|
const index = {
|
|
key: {
|
|
featuresUpdatedAt: 1,
|
|
},
|
|
name: 'featuresUpdatedAt_1',
|
|
}
|
|
|
|
exports.migrate = async client => {
|
|
const { db } = client
|
|
await Helpers.addIndexesToCollection(db.users, [index])
|
|
}
|
|
|
|
exports.rollback = async client => {
|
|
const { db } = client
|
|
await Helpers.dropIndexesFromCollection(db.users, [index])
|
|
}
|