Use hook inside the transaction
To prevent serialization issue
This commit is contained in:
parent
05a60d8599
commit
bb7e5605d1
|
@ -1,6 +1,7 @@
|
|||
import { Transaction } from 'sequelize'
|
||||
import {
|
||||
BeforeDestroy,
|
||||
AllowNull,
|
||||
BeforeDestroy,
|
||||
BelongsTo,
|
||||
Column,
|
||||
CreatedAt,
|
||||
|
@ -100,11 +101,12 @@ export class VideoLiveModel extends Model<Partial<AttributesOnly<VideoLiveModel>
|
|||
ReplaySetting: VideoLiveReplaySettingModel
|
||||
|
||||
@BeforeDestroy
|
||||
static deleteReplaySetting (instance: VideoLiveModel) {
|
||||
static deleteReplaySetting (instance: VideoLiveModel, options: { transaction: Transaction }) {
|
||||
return VideoLiveReplaySettingModel.destroy({
|
||||
where: {
|
||||
id: instance.replaySettingId
|
||||
}
|
||||
},
|
||||
transaction: options.transaction
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue