Add a new column to existing table in a migration
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... <?php public function up() { Schema::create('users', function ($table) { $table->integer("paid"); }); } In terminal, I execute php artisan migrate:install and migrate . How do I add new columns? Phill Sparks To create a migration, you may use the migrate:make command on the Artisan CLI. Use a specific name to avoid clashing with existing models for Laravel 3: php artisan migrate:make add_paid_to_users for Laravel 5+: php artisan make:migration add