Point of Interestを複数形にするにはどうすればよいですか?
だからそれPointOfInterest
はなるPointsOfInterest
、なるpoint_of_interest
べきだ、points_of_interest
など。
Point of Interestを複数形にするにはどうすればよいですか?
だからそれPointOfInterest
はなるPointsOfInterest
、なるpoint_of_interest
べきだ、points_of_interest
など。
この方法で複数形をオーバーライドできます。
のconfig/initializers/inflections.rb
ActiveSupport::Inflector.inflections do |inflect|
inflect.irregular 'PointOfInterest', 'PointsOfInterest'
inflect.irregular 'point_of_interest', 'points_of_interest'
end
レールで生成されたモデルの複数形を変更するも参照してください。
以前の回答から:
ActiveRecord の抑揚を変更します。
https://stackoverflow.com/a/3378349/1335244
http://api.rubyonrails.org/classes/ActiveSupport/Inflector.html
移行を直接編集します。