Answers for "how to add extra timestamp column in existing table laravel"

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 "how to add extra timestamp column in existing table laravel"

Browse Popular Code Answers by Language