45 lines
1013 B
PHP
Executable File
45 lines
1013 B
PHP
Executable File
<?php
|
|
|
|
use yii\db\Migration;
|
|
|
|
/**
|
|
* Handles the creation of table `status`.
|
|
*/
|
|
class m181003_070416_create_status_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('status', [
|
|
'id' => $this->primaryKey(),
|
|
'name' => $this->string(100)->notNull(),
|
|
], $tableOptions);
|
|
|
|
$this->insert('status',
|
|
[
|
|
'name' => 'Активный',
|
|
]);
|
|
|
|
$this->insert('status',
|
|
[
|
|
'name' => 'Уволен',
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function safeDown()
|
|
{
|
|
$this->dropTable('status');
|
|
}
|
|
}
|