예제 #1
0
파일: Builder.php 프로젝트: colorium/orm
 /**
  * Wipe entitys
  *
  * @return bool
  */
 public function wipe()
 {
     $sql = SQL::dropTable($this->entity->name);
     return $this->execute($sql);
 }