Issue
i want to change the timestamp to current time but it doesn't work. What should i do?
$table->timestamp('created_at')->default(DB::raw('CURRENT_TIMESTAMP'));
$table->timestamp('updated_at')->default(DB::raw('CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP'));
Solution
Try to use useCurrent() method:
$table->timestamp('created_at')->useCurrent();
$table->timestamp('updated_at')->useCurrent();
Answered By - TsaiKoga
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.