for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Phinx\Migration\AbstractMigration;
class DropTeamActivity extends AbstractMigration
{
/**
* {@inheritdoc}
*/
public function change()
$table = $this->table('teams');
$table
->removeColumn('activity')
->update()
;
}