Open schmunk42 opened 11 years ago
If migrations are run with --interactive=0 you'll get an error here:
https://github.com/mishamx/yii-user/blob/master/migrations/m110805_153437_installYiiUser.php#L108
because $this->_model is not an object. Maybe just add
$this->_model
$this->_model = new User;
to avoid the error.
PS: Sorry for not sending in a pull request, maybe there's already one, but I just saw you merging today ;)
If migrations are run with --interactive=0 you'll get an error here:
https://github.com/mishamx/yii-user/blob/master/migrations/m110805_153437_installYiiUser.php#L108
because
$this->_model
is not an object. Maybe just addto avoid the error.
PS: Sorry for not sending in a pull request, maybe there's already one, but I just saw you merging today ;)