Halim Yeni sütun için ayrı bir migration oluşturup php artisan migrate
çalıştıracaksınız.
php artisan make:migration add_role_to_users_table
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->string('role')->nullable()->index();
});
}
public function down()
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('role');
});
}
php artisan migrate