Answers for "php artisan change column name to table"

PHP
12

laravel migration change column name

Schema::table('users', function (Blueprint $table) {
    $table->renameColumn('from', 'to');
});
Posted by: Guest on April-24-2020
2

migrations required field laravel

$table->string('foo')->nullable(false)->change();
Posted by: Guest on May-07-2020

Code answers related to "php artisan change column name to table"

Browse Popular Code Answers by Language