Browse Source

fix sorting of migrations.

Taylor Otwell 13 years ago
parent
commit
f3a78490bd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/cli/tasks/migrate/resolver.php

+ 1 - 1
laravel/cli/tasks/migrate/resolver.php

@@ -130,7 +130,7 @@ class Resolver {
 		// At this point the migrations are only sorted within their
 		// bundles so we need to resort them by name to ensure they
 		// are in a consistent order.
-		usort($migrations, function($a, $b)
+		usort($instances, function($a, $b)
 		{
 			return strcmp($a['name'], $b['name']);
 		});