class DoeskeyvalueGenerator

Public Class Methods

next_migration_number(path) click to toggle source
# File lib/generators/doeskeyvalue/doeskeyvalue_generator.rb, line 14
def self.next_migration_number(path)
  if ActiveRecord::Base.timestamped_migrations
    Time.now.utc.strftime("%Y%m%d%H%M%S")
  else
    "%.3d" % (current_migration_number(path) + 1)
  end
end

Public Instance Methods

create_migration_file() click to toggle source
# File lib/generators/doeskeyvalue/doeskeyvalue_generator.rb, line 22
def create_migration_file
  puts "Creating DoesKeyValue index table migration"
  index_table_name = ARGV.first || "key_value_index"
  puts "=> #{index_table_name} table to be created"
  migration_template "create_key_value_index.rb", "db/migrate/create_#{index_table_name}.rb", table_name:index_table_name
end