Use this shortcut to add timestamps:
use Abagayev\Laravel\MigrationShortcuts\Migrations\AddTimestampsMigration;
class AddTimestampsToTableMigration extends AddTimestampsMigration
{
protected $table = 'table_name';
}
Timestamp column is going to be dropped on the migration rollback.