Browse Source

fix migrator.

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

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

@@ -192,7 +192,7 @@ class Migrator extends Task {
 		// is a better way of ordering migrations than a simple integer
 		// incrementation, since developers may start working on the
 		// next migration at the same time unknowingly.
-		$prefix = date('Y_m_d');
+		$prefix = date('Y_m_d').'_'.time();
 
 		$path = Bundle::path($bundle).'migrations'.DS;
 

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

@@ -116,7 +116,7 @@ class Resolver {
 			// naming collisions with other bundle's migrations.
 			$prefix = Bundle::class_prefix($bundle);
 
-			$class = $prefix.substr($name, 11);
+			$class = $prefix.substr($name, 22);
 
 			$migration = new $class;