mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
9e15c73228
Revert "Revert "Convert migration scripts to ESM"" GitOrigin-RevId: 0430a3cd02b9d23bf0f4573346351dcf4ee17fa6
27 lines
724 B
JavaScript
27 lines
724 B
JavaScript
/* subscription.freeTrialExpiresAt
|
|
* Example script for a migration:
|
|
*
|
|
* This script demonstrates how to write a script that is runnable either via
|
|
* the CLI, or via a migration. The related migration is `script_example`
|
|
* in the migrations directory.
|
|
*/
|
|
|
|
const { User } = require('../../app/src/models/User')
|
|
// const somePackage = require('some-package')
|
|
|
|
const runScript = async () => {
|
|
const user = await User.findOne({}, { first_name: 1 }).exec()
|
|
const name = user ? user.first_name : 'World'
|
|
console.log(`Hello ${name}!`)
|
|
}
|
|
|
|
if (require.main === module) {
|
|
runScript()
|
|
.then(() => process.exit())
|
|
.catch(err => {
|
|
console.error(err)
|
|
process.exit(1)
|
|
})
|
|
}
|
|
|
|
module.exports = runScript
|