Answers for "default with another column laravel migration"

PHP
0

laravel migration change column default

Schema::table('users', function ($table) {
    $table->integer('active')->default(0)->change();
});
Posted by: Guest on June-03-2021

Code answers related to "default with another column laravel migration"

Browse Popular Code Answers by Language