1

我怎样才能复数兴趣点

so that PointOfInterestbecome PointsOfInterest, point_of_interestshould becomepoints_of_interest等等。

4

2 回答 2

2

您可以通过这种方式覆盖复数:

config/initializers/inflections.rb

ActiveSupport::Inflector.inflections do |inflect|
  inflect.irregular 'PointOfInterest', 'PointsOfInterest'
  inflect.irregular 'point_of_interest', 'points_of_interest'
end

另请参阅 在 rails 中更改生成模型的复数形式?

于 2012-06-25T20:27:49.057 回答
0

从以前的答案:

更改 ActiveRecord 中的变形:

https://stackoverflow.com/a/3378349/1335244

http://api.rubyonrails.org/classes/ActiveSupport/Inflector.html

直接编辑迁移:

https://stackoverflow.com/a/3379665/1335244

于 2012-06-25T20:26:59.573 回答