php-censor/src/PHPCensor/Migrations/20160623100223_project_table_defaults.php
2017-01-29 18:20:22 +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();
}
}