mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
4b9aa97ea1
Migrations: tag migrations with relevant environment GitOrigin-RevId: ad6c3bea19d3c21a1fdae58e09c861a3173c792b
22 lines
539 B
JavaScript
22 lines
539 B
JavaScript
/* eslint-disable no-unused-vars */
|
|
|
|
/*
|
|
* Example migration for a script:
|
|
*
|
|
* This migration demonstrates how to run a script. In this case, the example
|
|
* script will print "hello world" if there are no users in the users collection
|
|
* or "hello <name>", when User.findOne() finds something.
|
|
*/
|
|
|
|
const runScript = require('../scripts/example/script_for_migration.js')
|
|
|
|
exports.tags = []
|
|
|
|
exports.migrate = async client => {
|
|
const { db } = client
|
|
await runScript()
|
|
}
|
|
|
|
exports.rollback = async client => {
|
|
const { db } = client
|
|
}
|