コード例 #1
0
ファイル: Builder.php プロジェクト: yb199478/framework
 /**
  * 清空数据库
  *
  * @return void
  */
 public function truncate()
 {
     foreach ($this->grammar->compileTruncate($this) as $sql => $bindings) {
         $this->connection->statement($sql, $bindings);
     }
 }