php-censor/src/Migrations/20160623100223_project_table_defaults.php

14 lines
270 B
PHP
Raw Permalink Normal View History

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