Answers for "does laravel update timestamps with manual query"

PHP
1

laravel add timestamps to existing table

$table->dateTime('created_at')->default(DB::raw('CURRENT_TIMESTAMP'));
$table->dateTime('updated_at')->nullable();
Posted by: Guest on November-17-2020

Code answers related to "does laravel update timestamps with manual query"

Browse Popular Code Answers by Language