Class: ActsAsCategorizable::MigrationGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/acts-as-categorizable/migration_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(dirname) ⇒ Object



13
14
15
# File 'lib/generators/acts-as-categorizable/migration_generator.rb', line 13

def self.next_migration_number(dirname)
  ActiveRecord::Generators::Base.next_migration_number(dirname)
end

Instance Method Details

#create_migration_fileObject



17
18
19
20
21
22
# File 'lib/generators/acts-as-categorizable/migration_generator.rb', line 17

def create_migration_file
  migration_template 'migration.rb',
                     'db/migrate/create_aac_categories_table.rb' rescue nil
  migration_template 'relation_migration.rb',
                     'db/migrate/create_aac_categorizable_category_table.rb' rescue nil
end