Answers for "laravel i've added a column to a migration table after using php artisan migrate it says nothing to migrate"

PHP
4

laravel migration add column after

Schema::table('users', function ($table) {
    $table->string('email')->after('id')->nullable();
});
Posted by: Guest on December-11-2020

Code answers related to "laravel i've added a column to a migration table after using php artisan migrate it says nothing to migrate"

Browse Popular Code Answers by Language