mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-25 11:00:07 +02:00

* [history-v1] remove processing of deleted files when back-filling hashes * [web] remove deledFiles collection GitOrigin-RevId: 7c080e564f7d7acb33ebe7ebe012f415a847d0df
14 lines
360 B
JavaScript
14 lines
360 B
JavaScript
const tags = ['server-ce', 'server-pro', 'saas']
|
|
|
|
const migrate = async client => {
|
|
// Skip back-filling. The deletedFiles collection will be deleted in a following migration.
|
|
// The projects.deletedFiles array will be purged as part of the later migration as well.
|
|
}
|
|
|
|
const rollback = async client => {}
|
|
|
|
export default {
|
|
tags,
|
|
migrate,
|
|
rollback,
|
|
}
|