mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
19 lines
653 B
TypeScript
19 lines
653 B
TypeScript
/* MIGRATION TO CLEAN PRODUCTION DATA
|
|
*
|
|
* delete the pending tasks to not have any dead entries.
|
|
* the way we interact with the table is now differently
|
|
* and therefore we should clear it to avoid conflicts
|
|
* and dead entries
|
|
*/
|
|
|
|
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
|
|
export async function upgrade(queryFn: (query: string, values?: any[]) => Promise<Array<any>>) {
|
|
await queryFn('DELETE FROM `login_pending_tasks`;')
|
|
}
|
|
|
|
export async function downgrade(/* queryFn: (query: string, values?: any[]) => Promise<Array<any>> */) {
|
|
// cannot undelete things
|
|
}
|