From 28dcf185082fe2562a632664139824213386dc31 Mon Sep 17 00:00:00 2001 From: romanb Date: Thu, 18 Oct 2007 16:36:55 +0000 Subject: [PATCH] made version comparison less strict --- lib/Doctrine/Migration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Migration.php b/lib/Doctrine/Migration.php index 52f6508f3..23aa40409 100644 --- a/lib/Doctrine/Migration.php +++ b/lib/Doctrine/Migration.php @@ -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'); }