Files
money/db/migrations/20210315235617_create_currencies.php
2021-03-16 00:50:51 -03:00

41 lines
1.2 KiB
PHP

<?php
use Phinx\Db\Adapter\MysqlAdapter;
class CreateCurrencies extends Phinx\Migration\AbstractMigration
{
public function change()
{
$this->table('currencies', [
'id' => false,
'primary_key' => ['id'],
'engine' => 'InnoDB',
'encoding' => 'utf8mb4',
'collation' => 'utf8mb4_general_ci',
'comment' => '',
'row_format' => 'DYNAMIC',
])
->addColumn('id', 'integer', [
'null' => false,
'limit' => '10',
'signed' => false,
'identity' => 'enable',
])
->addColumn('code', 'string', [
'null' => false,
'limit' => 5,
'collation' => 'utf8mb4_general_ci',
'encoding' => 'utf8mb4',
'after' => 'id',
])
->addColumn('name', 'string', [
'null' => false,
'limit' => 100,
'collation' => 'utf8mb4_general_ci',
'encoding' => 'utf8mb4',
'after' => 'code',
])
->create();
}
}