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

19 lines
306 B
PHP

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