Class: Econfig::MigrationGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/econfig/migration/migration_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(dirname) ⇒ Object



5
6
7
8
9
10
11
# File 'lib/generators/econfig/migration/migration_generator.rb', line 5

def self.next_migration_number(dirname)
  if ActiveRecord::Base.timestamped_migrations
    Time.new.utc.strftime("%Y%m%d%H%M%S")
  else
    "%.3d" % (current_migration_number(dirname) + 1)
  end
end

Instance Method Details

#create_migration_fileObject



13
14
15
# File 'lib/generators/econfig/migration/migration_generator.rb', line 13

def create_migration_file
  migration_template "migration.rb", "db/migrate/create_econfig.rb"
end