Change plural form of generated model in rails?

前端 未结 3 1896
粉色の甜心
粉色の甜心 2021-02-06 01:28

I\'m using this command:

rails generate model DayOfMonth day:integer

Rails generated the model \"DayOfMonth\" and the table \"day_of_months\".<

3条回答
  •  清歌不尽
    2021-02-06 02:13

    You could just edit the migration and then add

    Rails 3.2+ / 4+

    class DayOfMonth < ActiveRecord::Base
       self.table_name = "days_of_month"
    end
    

    Rails 3

    class DayOfMonth < ActiveRecord::Base
      set_table_name "days_of_month"
    end
    

提交回复
热议问题