Laravel avant la migration
Schema::table('users', function ($table) {
$table->string('email')->after('id')->nullable();
});
Courageous Cod
Schema::table('users', function ($table) {
$table->string('email')->after('id')->nullable();
});