Class: Refile::Postgres::MigrationGenerator

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

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(path) ⇒ Object



8
9
10
# File 'lib/generators/refile/postgres/migration/migration_generator.rb', line 8

def self.next_migration_number(path)
  Time.now.utc.strftime("%Y%m%d%H%M%S")
end

Instance Method Details

#copy_migration_fileObject



12
13
14
# File 'lib/generators/refile/postgres/migration/migration_generator.rb', line 12

def copy_migration_file
  migration_template "migration.rb.erb", "db/migrate/create_#{table_name}.rb"
end