示例#1
0
 public function cleanMigrationsTable()
 {
     // @codeCoverageIgnoreStart
     if (!Config::runningUnitTest()) {
         return;
     }
     // @codeCoverageIgnoreEnd
     $this->db = Db::connection();
     $this->db->dropTable($this->table);
     $this->checkMigrationsTable();
 }