I can\'t figure out how to add a new column to my existing database table using the Laravel framework.
I tried to edit the migration file using...
If you're using Laravel 5, the command would be;
php artisan make:migration add_paid_to_users
All of the commands for making things (controllers, models, migrations etc) have been moved under the make: command.
make:
php artisan migrate is still the same though.
php artisan migrate