1
0
mirror of synced 2024-12-13 14:56:01 +03:00

made version comparison less strict

This commit is contained in:
romanb 2007-10-18 16:36:55 +00:00
parent 066e7d524f
commit 28dcf18508

View File

@ -324,7 +324,7 @@ class Doctrine_Migration
$to = $this->getLatestVersion();
}
if ($from === $to) {
if ($from == $to) {
throw new Doctrine_Migration_Exception('Already up-to-date');
}