module RuboCop::Rails::SchemaLoader

def load!(target_ruby_version)

def load!(target_ruby_version)
  path = db_schema_path
  return unless path
  ast = parse(path, target_ruby_version)
  Schema.new(ast)
end