Rafalsky/HomeFinance

View on GitHub
common/migrations/db/m160610_213702_add_payment_account_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 m160610_213702_add_payment_account_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('{{%payment_account}}', [
            'id' => $this->primaryKey(),
            'hash' => $this->string(23)->notNull(),
            'wallet_id' => $this->integer(11),
            'name' => $this->string(255),
            'created_at' => $this->dateTime()->notNull(),
            'updated_at' => $this->dateTime()
        ], $tableOptions);
        $this->createIndex('$payment_account_hash', '{{%payment_account}}', ['hash'], true);
        $this->addForeignKey('fk_payment_account_wallet', '{{%payment_account}}', 'wallet_id', '{{%wallet}}', 'id', 'CASCADE', 'CASCADE');
    }

    public function down()
    {
        $this->dropForeignKey('fk_payment_account_wallet', '{{%payment_account}}');
        $this->dropIndex('$payment_account_hash', '{{%payment_account}}');
        $this->dropTable('{{%payment_account}}');
    }
}