createTable('page', [ 'id' => $this->primaryKey(), 'translit'=> $this->string(), 'title'=> $this->string(), 'body'=> $this->text(), 'meta_title'=> $this->string(), 'meta_keywords' => $this->string(), 'meta_description'=> $this->string(), 'seo_text'=> $this->text(), 'h1'=> $this->string(), ]); } /** * @inheritdoc */ public function down() { $this->dropTable('page'); } }