I would like to make a timestamp column with a default value of CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP using the Laravel Schema Builder/Migrations. I hav
CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
If your're looking to set the current datetime for a dateTime column (like i was when I googled), use this way
$table->dateTime('signed_when')->useCurrent();