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