예제 #1
0
파일: Model.php 프로젝트: fastpress/arrow
 /**
  * Deletes the current model.
  *
  * @return bool True on success, false otherwise.
  */
 public function delete()
 {
     $model = new DynamicFluentModel();
     $model->withModel($this);
     $primaryKeyValue = $this->columns[$this->getPrimaryKeyName()];
     $rowCount = $model->where($this->getPrimaryKeyName(), $primaryKeyValue)->deleteAll();
     return $rowCount > 0;
 }