Просмотр файла app/database/migrations/20161216120717_create_notice_table.php
<?php
use Phinx\Migration\AbstractMigration;
class CreateNoticeTable extends AbstractMigration
{
/**
* Change Method.
*/
public function change()
{
$table = $this->table('notice', ['collation' => 'utf8mb4_unicode_ci']);
$table->addColumn('name', 'string', ['limit' => 100])
->addColumn('text', 'text', ['null' => true])
->addColumn('user', 'string', ['limit' => 20, 'null' => true])
->addColumn('time', 'integer')
->addColumn('protect', 'boolean', ['default' => 0])
->create();
}
}