Declare `definition`

Declare `definition` in `BelongsTo.prototype.destroy`
This commit is contained in:
Amir Jafarian 2016-07-22 15:29:52 -04:00
parent a22ff61af2
commit 8d4c577032
1 changed files with 3 additions and 2 deletions

View File

@ -1366,9 +1366,10 @@ BelongsTo.prototype.destroy = function(options, cb) {
cb = options;
options = {};
}
var modelTo = this.definition.modelTo;
var definition = this.definition;
var modelInstance = this.modelInstance;
var fk = this.definition.keyFrom;
var fk = definition.keyFrom;
cb = cb || utils.createPromiseCallback();