overleaf/services/web/migrations/20190730093801_script_example.mjs
Liangjun Song 902ae750dc Merge pull request #21202 from overleaf/ls-scripts-to-esm-2
Migrate scripts folder to esm 2/x

GitOrigin-RevId: 1698bc4f13e026fa281d37a4914a2f997849c761
2024-10-23 08:04:53 +00:00

28 lines
580 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.
*/
import runScript from '../scripts/example/script_for_migration.mjs'
const tags = []
const migrate = async client => {
const { db } = client
await runScript()
}
const rollback = async client => {
const { db } = client
}
export default {
tags,
migrate,
rollback,
}