Rafalsky/HomeFinance

View on GitHub
common/migrations/db/m160105_202804_add_company_table.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/*
 * This file is part of the HomeFinanceV2 project.
 *
 * (c) Rafalsky.com <http://github.com/Rafalsky/>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

use yii\db\Migration;

class m160105_202804_add_company_table extends Migration
{
    public function up()
    {
        $tableOptions = null;
        if ($this->db->driverName === 'mysql') {
            $tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB';
        }

        $this->createTable('{{%company}}', [
            'id' => $this->primaryKey(),
            'hash' => $this->string(23)->notNull(),
            'name' => $this->string(255),
            'logo' => $this->string(255),
            'about' => $this->string(255),
            'nationality' => $this->integer(11),
            'created_at' => $this->dateTime()->notNull(),
            'updated_at' => $this->dateTime(),
        ], $tableOptions);
        $this->createIndex('company_hash', '{{%company}}', ['hash'], true);
    }

    public function down()
    {
        $this->dropIndex('company_hash', '{{%company}}');
        $this->dropTable('{{%company}}');
    }
}