mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-07 20:14:31 +00:00
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 */
|
|
}
|