Sha256: 135eb342328cebd94d421b4d2146d25af5b4b7a3f2ddf854251bbcc7a0e0f9e2
Contents?: true
Size: 526 Bytes
Versions: 95
Compression:
Stored size: 526 Bytes
Contents
require 'rails/generators/migration' module ActiveRecord module Generators # :nodoc: module Migration extend ActiveSupport::Concern include Rails::Generators::Migration module ClassMethods # Implement the required interface for Rails::Generators::Migration. def next_migration_number(dirname) next_migration_number = current_migration_number(dirname) + 1 ActiveRecord::Migration.next_migration_number(next_migration_number) end end end end end
Version data entries
95 entries across 91 versions & 8 rubygems