Table \'users\':
|id|name|address|post_code|deleted_at|created_at|
and I want add column \'phone_nr\' somewhere between \'id\' and \'delete
The answer by James is still correct. However, Laravel 5 has slightly changed the make migration syntax:
php artisan make:migration add_google_auth_to_users_table --table=users
(I am aware this question is tagged Laravel 4, however it ranks quite high for the question ;) )