Class: RailsViewCounter::MigrationGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- RailsViewCounter::MigrationGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/rails_view_counter/migration_generator.rb
Instance Method Summary collapse
Instance Method Details
#create_migration_file ⇒ Object
13 14 15 16 17 18 |
# File 'lib/generators/rails_view_counter/migration_generator.rb', line 13 def create_migration_file # 确保表名是复数形式 plural_table_name = table_name.pluralize migration_template 'migration.rb', "db/migrate/add_view_counter_to_#{plural_table_name}.rb" end |