for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Phinx\Migration\AbstractMigration;
class RecordCommitter extends AbstractMigration
{
/**
* @author Ronan Chilvers <[email protected]>
*/
public function change()
$table = $this->table('deployments');
$table
->addColumn(
'deployment_committer',
'string',
[
'length' => 1024,
'null' => false,
]
)
->update();
}