overleaf/services/web/migrations/20190730093801_script_example.js
Liangjun Song b69ff9417a Merge pull request #20731 from overleaf/revert-20480-ls-convert-migration-scripts-to-esm
Revert "Convert migration scripts to ESM"

GitOrigin-RevId: ca9ddda6ddee8964f72797d3b653ef9cee6a7a49
2024-10-14 10:57:02 +00:00

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
}