mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
33bd9b6d43
add saas tag to migration GitOrigin-RevId: 46422b8cb50412e5d521dd6e960ee4c29945fb89
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 */
|
|
}
|