Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix empty() bug on DBPrefix #2205

Merged
merged 2 commits into from
Sep 17, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Move migration rollback before table drops
  • Loading branch information
MGatner authored Sep 9, 2019
commit df9e36975ab86053e5a298e1569f906ae8da09b2
2 changes: 1 addition & 1 deletion system/Test/CIDatabaseTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ protected function setUp()
{
$this->migrations->setNamespace($this->namespace);
}
$this->migrations->regress(0, 'tests');

// Delete all of the tables to ensure we're at a clean start.
$tables = $this->db->listTables();
Expand All @@ -192,7 +193,6 @@ protected function setUp()
}
}

$this->migrations->regress(0, 'tests');
$this->migrations->latest('tests');
}

Expand Down