Stop deleting the migrations table during testing

This commit is contained in:
Lonnie Ezell 2017-08-13 23:27:12 -05:00
parent e9732f1862
commit 17d3ce3859
No known key found for this signature in database
GPG Key ID: 8EB408F8D82F5002

View File

@ -163,6 +163,8 @@ class CIDatabaseTestCase extends CIUnitTestCase
foreach ($tables as $table)
{
if ($table = $this->db->DBPrefix.'migrations') continue;
$forge->dropTable($table, true);
}
}