Browse Source

Merge pull request #260 from sparksp/2.2b1/migrate-sort

Sort outstanding migrations by filename
Taylor Otwell 13 years ago
parent
commit
221d2f8af5
1 changed files with 8 additions and 0 deletions
  1. 8 0
      laravel/cli/tasks/migrate/resolver.php

+ 8 - 0
laravel/cli/tasks/migrate/resolver.php

@@ -127,6 +127,14 @@ class Resolver {
 			$instances[] = compact('bundle', 'name', 'migration');
 		}
 
+		// At this point the migrations are only sorted within their
+		// bundles so we need to re-sort them by name to ensure they
+		// are in a consistent order.
+		usort($migrations, function($a, $b)
+		{
+			return strcmp($a['name'], $b['name']);
+		});
+
 		return $instances;
 	}