Answers for "how to add column after specific column in migration aravel"

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 "how to add column after specific column in migration aravel"

Browse Popular Code Answers by Language