Class: UsefullAttachment::MigrationGenerator

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

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(path) ⇒ Object



10
11
12
13
14
15
16
17
# File 'lib/generators/usefull_attachment/migration/migration_generator.rb', line 10

def self.next_migration_number(path)
    unless @prev_migration_nr
      @prev_migration_nr = Time.now.utc.strftime("%Y%m%d%H%M%S").to_i
    else
      @prev_migration_nr += 1
    end
    @prev_migration_nr.to_s
end

Instance Method Details

#copy_migrationObject



20
21
22
# File 'lib/generators/usefull_attachment/migration/migration_generator.rb', line 20

def copy_migration
  migration_template "create_migration_template.rb", "db/migrate/usefull_attachment_create_links.rb"
end