database lint fixes

This commit is contained in:
Ulf Gebhardt 2022-02-28 02:20:17 +01:00
parent ca3d4b87eb
commit 7358524168
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -11,6 +11,7 @@ export async function upgrade(queryFn: (query: string, values?: any[]) => Promis
await queryFn('UPDATE `users` SET `email` = LOWER(`email`);')
}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export async function downgrade(queryFn: (query: string, values?: any[]) => Promise<Array<any>>) {
// This migration cannot be revered
}