Fixed 'build_error.message' column size

This commit is contained in:
Dmitry Khomutov 2017-02-19 00:59:45 +07:00
parent ebb08d868b
commit b83a6db697
No known key found for this signature in database
GPG key ID: 7EB36C9576F9ECB9

View file

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