View file visavi-rotorcms-63832fa/app/database/migrations/20150921211144_create_smiles_table.php
<?php
use Phinx\Migration\AbstractMigration;
class CreateSmilesTable extends AbstractMigration
{
/**
* Change Method.
*/
public function change()
{
$table = $this->table('smiles');
$table->addColumn('name', 'string', ['limit' => 25])
->addColumn('code', 'string', ['limit' => 20])
->addIndex('code')
->create();
}
}