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
20 lines
419 B
JavaScript
20 lines
419 B
JavaScript
import BatchedUpdateScript from '../scripts/helpers/batchedUpdate.js'
|
|
|
|
const { batchedUpdate } = BatchedUpdateScript
|
|
const tags = ['server-ce', 'server-pro', 'saas']
|
|
|
|
const migrate = async () => {
|
|
await batchedUpdate(
|
|
'users',
|
|
{ 'features.templates': { $exists: true } },
|
|
{ $unset: { 'features.templates': true } }
|
|
)
|
|
}
|
|
|
|
const rollback = async () => {}
|
|
|
|
export default {
|
|
tags,
|
|
migrate,
|
|
rollback,
|
|
}
|