aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/application_record/application_record_generator.rb
blob: f6b6e76b1d0e1adb790fafd8cdd797db387193d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Rails
  module Generators
    class ApplicationRecordGenerator < Base # :nodoc:
      hook_for :orm, required: true, desc: "ORM to be invoked"
    end
  end
end