Answers for "after field specific in migration laravel"

PHP
1

how set field after another field in migration in laravel

Schema::table('users', function($table)
{
    $table->string('phone_nr')->after('id');
});
Posted by: Guest on August-04-2021

Code answers related to "after field specific in migration laravel"

Browse Popular Code Answers by Language