我用命令创建了一个匿名模型
rails g model Anonymous section_id:integer aid:string fake:bool active:bool
但是迁移中的表名称为匿名
class CreateAnonymous < ActiveRecord::Migration
def change
create_table :anonymous do |t|
t.integer :section_id
t.string :aid
t.bool :fake
t.bool :active
t.timestamps
end
end
end
我是对的,匿名的复数形式也是匿名的吗?(英语不是我的母语)。我怎样才能看到 Rails 给我的模型起的复数名称?像rake routes
什么?