Fix registration notification error in client
This commit is contained in:
parent
7c77ace9a7
commit
7aacaa76ec
3 changed files with 31 additions and 2 deletions
|
@ -27,7 +27,7 @@ import { CONFIG, registerConfigChangedHandler } from './config'
|
|||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
const LAST_MIGRATION_VERSION = 775
|
||||
const LAST_MIGRATION_VERSION = 780
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
|
|
|
@ -0,0 +1,30 @@
|
|||
import * as Sequelize from 'sequelize'
|
||||
|
||||
async function up (utils: {
|
||||
transaction: Sequelize.Transaction
|
||||
queryInterface: Sequelize.QueryInterface
|
||||
sequelize: Sequelize.Sequelize
|
||||
}): Promise<void> {
|
||||
const { transaction } = utils
|
||||
|
||||
{
|
||||
await utils.sequelize.query('DELETE FROM "userNotification" WHERE type = 20 AND "userRegistrationId" IS NULL', { transaction })
|
||||
}
|
||||
|
||||
{
|
||||
await utils.sequelize.query(
|
||||
'ALTER TABLE "userNotification" DROP CONSTRAINT "userNotification_userRegistrationId_fkey", ' +
|
||||
'ADD CONSTRAINT "userNotification_userRegistrationId_fkey" ' +
|
||||
'FOREIGN KEY ("userRegistrationId") REFERENCES "userRegistration" ("id") ON DELETE CASCADE ON UPDATE CASCADE',
|
||||
{ transaction })
|
||||
}
|
||||
}
|
||||
|
||||
function down (options) {
|
||||
throw new Error('Not implemented.')
|
||||
}
|
||||
|
||||
export {
|
||||
up,
|
||||
down
|
||||
}
|
|
@ -45,5 +45,4 @@ export function buildRateLimiter (options: {
|
|||
|
||||
function sendRateLimited (res: express.Response, options: RateLimitHandlerOptions) {
|
||||
return res.status(options.statusCode).send(options.message)
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue