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'); } }