Class: Pghero::Generators::SpaceStatsGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/pghero/space_stats_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(dirname) ⇒ Object

Implement the required interface for Rails::Generators::Migration.



15
16
17
18
19
20
21
22
# File 'lib/generators/pghero/space_stats_generator.rb', line 15

def self.next_migration_number(dirname) #:nodoc:
  next_migration_number = current_migration_number(dirname) + 1
  if ::ActiveRecord::Base.timestamped_migrations
    [Time.now.utc.strftime("%Y%m%d%H%M%S"), "%.14d" % next_migration_number].max
  else
    "%.3d" % next_migration_number
  end
end

Instance Method Details

#copy_migrationObject



24
25
26
# File 'lib/generators/pghero/space_stats_generator.rb', line 24

def copy_migration
  migration_template "space_stats.rb", "db/migrate/create_pghero_space_stats.rb", migration_version: migration_version
end

#migration_versionObject



28
29
30
31
32
# File 'lib/generators/pghero/space_stats_generator.rb', line 28

def migration_version
  if ActiveRecord::VERSION::MAJOR >= 5
    "[#{ActiveRecord::VERSION::MAJOR}.#{ActiveRecord::VERSION::MINOR}]"
  end
end