10 lines
414 B
JavaScript
10 lines
414 B
JavaScript
export async function saltAndHashEmails ({ models }) {
|
|
try {
|
|
console.log('Migrating existing emails to salt and hash them...')
|
|
await models.$executeRaw`select migrate_existing_user_emails(${process.env.EMAIL_SALT})`
|
|
console.log('Successfully migrated existing emails to salt and hash them!')
|
|
} catch (err) {
|
|
console.error('Error occurred while salting and hashing existing emails:', err)
|
|
}
|
|
}
|