mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
18 lines
267 B
JavaScript
18 lines
267 B
JavaScript
|
import updateStringDates from '../scripts/confirmed_at_to_dates.js'
|
||
|
|
||
|
const tags = ['saas']
|
||
|
|
||
|
const migrate = async client => {
|
||
|
await updateStringDates()
|
||
|
}
|
||
|
|
||
|
const rollback = async client => {
|
||
|
/* nothing to do */
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
tags,
|
||
|
migrate,
|
||
|
rollback,
|
||
|
}
|