Пример #1
0
 /**
  * Delete a table.
  *
  * @param string $table
  *            Table name.
  */
 protected function dropTable($table)
 {
     try {
         $this->db->dropTable($table);
         $this->definition->dropTable($table);
     } catch (\Exception $e) {
         if (!$this->ignoreExceptions) {
             throw $e;
         }
     }
 }