mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
comment and cleanp
This commit is contained in:
parent
8fb1be64fb
commit
1da3be6863
@ -1,17 +1,13 @@
|
|||||||
/* MIGRATION TO CLEAN PRODUCTION DATA
|
/* MIGRATION TO CLEAN PRODUCTION DATA
|
||||||
*
|
*
|
||||||
* cleanup the login_user_backups table as far a possible.
|
* cleanup the login_user_backups.
|
||||||
* Since the passphrase changed and its type is not detectable
|
* Delete data with no reference in login_users table and
|
||||||
* this whole thing is a pitfall
|
* delete the right one of the duplicate keys
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export async function upgrade(queryFn: (query: string, values?: any[]) => Promise<Array<any>>) {
|
export async function upgrade(queryFn: (query: string, values?: any[]) => Promise<Array<any>>) {
|
||||||
// Delete data with no reference in login_users table
|
// Delete data with no reference in login_users table
|
||||||
await queryFn(`DELETE FROM login_user_backups WHERE user_id NOT IN (SELECT id FROM login_users)`)
|
await queryFn(`DELETE FROM login_user_backups WHERE user_id NOT IN (SELECT id FROM login_users)`)
|
||||||
// Searching for users with a missing password and a backup entry
|
|
||||||
// `SELECT * FROM login_user_backups WHERE user_id IN (SELECT id FROM login_users WHERE password = 0)`
|
|
||||||
// results in only new users with the proper passphrase scheme - luckily we seem to be good on this one
|
|
||||||
// 142 entries in total are found and every entry has type 2 (new one).
|
|
||||||
|
|
||||||
// Delete duplicates which have changed for some reasons
|
// Delete duplicates which have changed for some reasons
|
||||||
await queryFn(`DELETE FROM login_user_backups WHERE id IN (21, 103, 313, 325, 726, 750, 1098)`)
|
await queryFn(`DELETE FROM login_user_backups WHERE id IN (21, 103, 313, 325, 726, 750, 1098)`)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user