()
| 139 | } |
| 140 | |
| 141 | async setDeferrable() { |
| 142 | if (this.options.deferrable) { |
| 143 | return await this |
| 144 | .sequelize |
| 145 | .getQueryInterface() |
| 146 | .deferConstraints(this, this.options); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | async begin() { |
| 151 | const queryInterface = this.sequelize.getQueryInterface(); |
no test coverage detected