php-censor/src/Migrations/20170218175400_fixed_build_error_message_column.php

19 lines
306 B
PHP
Raw Permalink Normal View History

<?php
use Phinx\Migration\AbstractMigration;
class FixedBuildErrorMessageColumn extends AbstractMigration
{
public function up()
{
$this
->table('build_error')
->changeColumn('message', 'text')
->save();
}
public function down()
{
}
}