In the document of Laravel 5.2 "Authentication Quickstart":
"Laravel provides a quick way to scaffold all of the routes and views you need for authentication using one simple command".
php artisan make:auth
After run the command, the default behavior will create many files about Model,Controller,View, Database Tables etc…
I found that a "users" table is created, with "id name email password" columns, it's great!
How ever, if my web application has different structure about "user", such as I do not use the unique "email" property to identify.
How can I change the behavior of the command php artisan make:auth?
Thanks!