mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-29 13:13:45 -05:00
12 lines
227 B
JavaScript
12 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 */
|
||
|
}
|