I want to change the table name and some column names of laravel auth table.
- Change table name from 'users' to 'accounts'
- Change table column name from 'name' to 'username'
- Change table column name from 'email' to 'email_addr'
- Change table column name from 'updated_at' to 'last_updated_at'
What steps do I take or which code do I edit without breaking something?
I tried this before, and registration worked, but login didn't. Whenever I tried to log in, I got redirected back to the login page.