예제 #1
0
파일: Migration.php 프로젝트: sigma-z/dive
 /**
  * @return string[]
  */
 protected function getDropTableStatements()
 {
     $sql = 'DROP TABLE ' . ($this->preventErrors ? ' IF EXISTS' : '') . ' ' . $this->conn->quoteIdentifier($this->tableName);
     return array($sql);
 }