Answers for "specify length of string field in laravel migration"

PHP
1

laravel migration change column length

Schema::table('users', function ($table) {
    $table->string('name', 50)->change();
});
Posted by: Guest on November-19-2020

Code answers related to "specify length of string field in laravel migration"

Browse Popular Code Answers by Language