guild/console/migrations/m181012_082916_create_position_table.php
2018-10-12 14:52:08 +03:00

34 lines
806 B
PHP

<?php
use yii\db\Migration;
/**
* Handles the creation of table `position`.
*/
class m181012_082916_create_position_table extends Migration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
$tableOptions = null;
if ($this->db->driverName === 'mysql') {
// http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci
$tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB';
}
$this->createTable('position', [
'id' => $this->primaryKey(),
'name' => $this->string(100)->notNull(),
], $tableOptions);
}
/**
* {@inheritdoc}
*/
public function safeDown()
{
$this->dropTable('position');
}
}