Answers for "migration for add timestamp to an existing table in laravel"

SQL
4

mysql timestamp in laravel migration

$table->timestamp('created_at')->default(DB::raw('CURRENT_TIMESTAMP'));
Posted by: Guest on August-04-2020
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 "migration for add timestamp to an existing table in laravel"

Code answers related to "SQL"

Browse Popular Code Answers by Language