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

29 lines
637 B
PHP

<?php
use Phinx\Migration\AbstractMigration;
class FixColumnTypes extends AbstractMigration
{
public function up()
{
$build = $this->table('build');
$build->changeColumn('log', 'text', ['null' => true]);
$buildMeta = $this->table('build_meta');
$buildMeta->changeColumn('meta_value', 'text', ['null' => false]);
}
public function down()
{
$build = $this->table('build');
$build->changeColumn('log', 'text', ['null' => true]);
$buildMeta = $this->table('build_meta');
$buildMeta->changeColumn('meta_value', 'text', ['null' => false]);
}
}