Answers for "how to set column type to date in laravel migration"

PHP
1

laravel migration add datetime column with default

$table->timestamp('column_name')->useCurrent();
Posted by: Guest on November-27-2020
2

laravel migration update table column type

Schema::table('users', function ($table) {
    $table->string('name', 50)->change();
});
We could also modify a column to be nullable:

Schema::table('users', function ($table) {
    $table->string('name', 50)->nullable()->change();
});
Posted by: Guest on July-31-2021

Code answers related to "how to set column type to date in laravel migration"

Browse Popular Code Answers by Language