Answers for "add a column after password in laravel migration"

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 "add a column after password in laravel migration"

Browse Popular Code Answers by Language