Kbwebs / MultiAuth

MIT License
138 stars 36 forks source link

Password Reset Table Name? #18

Open lellogrini opened 8 years ago

lellogrini commented 8 years ago

I have an error when trying to reset a password. Looks like the table name is not set (1103 Incorrect table name). How can I set it?

Orayi commented 8 years ago

Just replace it with what you have in the auth config under password.

The default is:

    'password' => [
        'email' => 'emails.password',
        'table' => 'password_resets',
        'expire' => 60,
    ],

So in this case the table is password_resets.

supgeek-rod commented 7 years ago

+1