Rename create_migration method in generator for Rails 4

Rails 4 already has a create_migration method in
Rails::Generators::Migration.
master
Guillaume Dott 2014-08-07 17:39:36 +02:00
parent 3a441d2c0c
commit 31ba046295
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ class TheModerator::InstallGenerator < Rails::Generators::Base
template 'moderation.rb', File.join('app', 'models', 'moderation.rb')
end
def create_migration
def create_migration_file
migration_template 'migration.rb', 'db/migrate/create_moderations.rb'
end