delete pending tasks

This commit is contained in:
Ulf Gebhardt 2022-01-19 21:41:54 +01:00
parent 791b05b481
commit af52da327a
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -0,0 +1,15 @@
/* 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
*/
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>>) {
return [] // cannot undelete things
}