Skip to content

Instantly share code, notes, and snippets.

@vuhung3990
Created October 14, 2014 03:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vuhung3990/0ba33d471f68fd19400c to your computer and use it in GitHub Desktop.
Save vuhung3990/0ba33d471f68fd19400c to your computer and use it in GitHub Desktop.
Laravel default timestamp issui
$table->timestamp('created_at')->default(DB::raw('CURRENT_TIMESTAMP'));
$table->timestamp('updated_at')->default(DB::raw('CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment