m161021_094522_seo_to_blog_migration.php 690 Bytes
<?php

use yii\db\Migration;

class m161021_094522_seo_to_blog_migration extends Migration
{
    public function up()
    {
        $this->addColumn('blog_category', 'meta_title', $this->string(255));
        $this->addColumn('blog_category', 'meta_desc', $this->string(255));
        $this->addColumn('blog_category', 'seo_text', $this->string(255));
        $this->addColumn('blog_category', 'h1', $this->string(255));
    }

    public function down()
    {
        $this->dropColumn('blog_category', 'h1');
        $this->dropColumn('blog_category', 'seo_text');
        $this->dropColumn('blog_category', 'meta_desc');
        $this->dropColumn('blog_category', 'meta_title');
    }
}