php-censor/src/Migrations/20160623100223_project_table_defaults.php
2018-03-09 13:46:18 +07:00

14 lines
270 B
PHP

<?php
use Phinx\Migration\AbstractMigration;
class ProjectTableDefaults extends AbstractMigration
{
public function change()
{
$this->table('project')
->changeColumn('build_config', 'text', ['null' => true])
->save();
}
}