class Doorkeeper::ApplicationOwnerGenerator

def self.next_migration_number(dirname)

def self.next_migration_number(dirname)
  ActiveRecord::Generators::Base.next_migration_number(dirname)
end

def application_owner

def application_owner
  migration_template(
    'add_owner_to_application_migration.rb.erb',
    'db/migrate/add_owner_to_application.rb',
    migration_version: migration_version
  )
end

def migration_version

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