Answers for "how to make column a timestamp data type in laravel migration"

SQL
3

laravel migration add datetime column with default

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

mysql timestamp in laravel migration

$table->timestamp('created_at')->default(DB::raw('CURRENT_TIMESTAMP'));
Posted by: Guest on August-04-2020

Code answers related to "how to make column a timestamp data type in laravel migration"

Code answers related to "SQL"

Browse Popular Code Answers by Language