Answers for "laravel nullable migration"

PHP
3

laravel migration make column nullable

Schema::table('users', function($table)
{
    $table->string('name', 50)->nullable()->change();
});

This is the correct syntax to revert the migration:

$table->integer('user_id')->unsigned()->nullable(false)->change();
Posted by: Guest on January-21-2021
3

laravel migration on delete set null

$table->...->onDelete('set null');
Posted by: Guest on April-22-2020
1

laravel change column

Schema::table('users', function (Blueprint $table) {
    $table->string('name', 50)->nullable()->change();
});
Posted by: Guest on April-02-2020
1

create migration laravel

php artisan make:Model Product -m -c  --resource
Posted by: Guest on November-26-2020

Code answers related to "laravel nullable migration"

Browse Popular Code Answers by Language