mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
b69ff9417a
Revert "Convert migration scripts to ESM" GitOrigin-RevId: ca9ddda6ddee8964f72797d3b653ef9cee6a7a49
11 lines
227 B
JavaScript
11 lines
227 B
JavaScript
const updateStringDates = require('../scripts/confirmed_at_to_dates.js')
|
|
|
|
exports.tags = ['saas']
|
|
|
|
exports.migrate = async client => {
|
|
await updateStringDates()
|
|
}
|
|
|
|
exports.rollback = async client => {
|
|
/* nothing to do */
|
|
}
|