ollieread / multiauth

Laravel multi auth
441 stars 109 forks source link

password_reminders table not being created #41

Closed DragonI closed 10 years ago

DragonI commented 10 years ago

Hi,

$ php artisan multiauth:reminders-table ´Migration created successfully! Generating optimized class loader

However, the password_reminders table was not created. There is also no record in the migrations table.

I am using Laravel 4.1.24 and the latest version of multiauth. Not sure, if this will have any affect but here is my auth config

'multi' => array( 'admin' => array( 'driver' => 'eloquent', 'model' => 'AdminUser' ), 'user' => array( 'driver' => 'eloquent', 'model' => 'User' ) ),

Any suggestions?

ollieread commented 10 years ago

That command, like its vanilla sibling, doesn't run the migration, it just simply creates the migration. Check your app/database/migrations.

DragonI commented 10 years ago

Sorry, forgot to mention that multiauth works AdminUsers and User