createTable( 'blog_category', [ 'id' => $this->primaryKey(), 'sort' => $this->integer(), 'image_id' => $this->integer(), 'parent_id' => $this->integer() ->defaultValue(0), 'status' => $this->boolean(), ] ); } public function down() { $this->dropTable('blog_category'); } }