class Alexa::Generators::MigrationsGenerator

Public Class Methods

next_migration_number(path) click to toggle source
# File lib/generators/alexa/migrations_generator.rb, line 11
def self.next_migration_number(path)
  next_migration_number = current_migration_number(path) + 1
  ActiveRecord::Migration.next_migration_number(next_migration_number)
end

Public Instance Methods

copy_migrations() click to toggle source
# File lib/generators/alexa/migrations_generator.rb, line 16
def copy_migrations
  migration_template "create_alexa_users.rb", "db/migrate/create_alexa_users.rb"
  migration_template "create_alexa_usages.rb", "db/migrate/create_alexa_usages.rb"
end