Beispiel #1
0
 /**
  * Drop table schema in database. This operation must be applied immediately.
  */
 public function drop()
 {
     $this->forgetElements();
     //Re-syncing initial state
     $this->initial->syncSchema($this->forgetElements());
     if ($this->exists()) {
         $this->commander->dropTable($this->getName());
     }
     $this->exists = false;
 }