public function down()
 {
     $this->delete(Category::tableName(), $this->item);
     return true;
 }
 public function down()
 {
     $this->dropTable(CategoryToItem::tableName());
     $this->dropTable(Category::tableName());
     return true;
 }