Skip to content

Commit b2421e3

Browse files
committed
fix(scope): new scoping errored out when using templates
Signed-off-by: Tobias Gurtzick <magic@wizardtales.com>
1 parent 68361fe commit b2421e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/migration.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var Migration = Skeleton.extend({
2323
this.internals = arguments[1];
2424
}
2525

26-
this._super(this.internals.migrationOptions);
26+
if (this.internals) this._super(this.internals.migrationOptions);
2727
}
2828
});
2929

0 commit comments

Comments
 (0)