()
| 147 | } |
| 148 | |
| 149 | async setDeferrable() { |
| 150 | if (this.options.deferrable) { |
| 151 | return await this |
| 152 | .sequelize |
| 153 | .getQueryInterface() |
| 154 | .deferConstraints(this, this.options); |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | async begin() { |
| 159 | const queryInterface = this.sequelize.getQueryInterface(); |
no test coverage detected