Files
money/db/migrations/20210315223928_inicial_load.php
2021-03-16 00:50:51 -03:00

13 lines
287 B
PHP

<?php
use Phinx\Db\Adapter\MysqlAdapter;
class InicialLoad extends Phinx\Migration\AbstractMigration
{
public function change()
{
$this->execute("ALTER DATABASE CHARACTER SET 'utf8mb4';");
$this->execute("ALTER DATABASE COLLATE='utf8mb4_general_ci';");
}
}