Make the migration generator only check files ending in *.rb when calculating the next file name #2317 [Chad Fowler]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2362 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Sam Stephenson
2005-09-27 10:47:47 +00:00
parent 76a7a52557
commit 72c3ffc7fb
2 changed files with 3 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
*SVN*
* Make the migration generator only check files ending in *.rb when calculating the next file name #2317 [Chad Fowler]
* Added prevention of duplicate migrations from the generator #2240 [fbeausoleil@ftml.net]
* Add db_schema_dump and db_schema_import rake tasks to work with the new ActiveRecord::SchemaDumper (for dumping a schema to and reading a schema from a ruby file).

View File

@@ -4,7 +4,7 @@ class MigrationGenerator < Rails::Generator::NamedBase
m.directory File.join('db/migrate')
existing_migrations = Dir.glob("db/migrate/[0-9]*_#{file_name}.rb")
raise "Another migration already exists with the same name" unless existing_migrations.empty?
next_migration_number = Dir.glob("db/migrate/[0-9]*.*").size + 1
next_migration_number = Dir.glob("db/migrate/[0-9]*.rb").size + 1
m.template 'migration.rb', File.join('db/migrate', "#{next_migration_number}_#{file_name}.rb")
end
end