Answers for "how to give size to datatype in migration in laravel"

PHP
1

laravel migration change column length

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

how to change existing migration laravel

php artisan make:migration update_user_guide_in_product_translations_table
Posted by: Guest on November-24-2020

Code answers related to "how to give size to datatype in migration in laravel"

Browse Popular Code Answers by Language