Answers for "add timestamp to migrate with after in l;aavel"

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
0

on update current timestamp laravel migration

$table->timestamp('created_at')->default(DB::raw('CURRENT_TIMESTAMP'));
$table->timestamp('updated_at')->default(DB::raw('CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP'));
Posted by: Guest on November-05-2021

Code answers related to "add timestamp to migrate with after in l;aavel"

Browse Popular Code Answers by Language