Answers for "laravel created at timestamp now in migration"

PHP
4

mysql timestamp in laravel migration

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

current time in laravel migration

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

Code answers related to "laravel created at timestamp now in migration"

Browse Popular Code Answers by Language