我正在尝试使用以下命令在rails中创建新模型:
rails generate model Education name:string
运行它时,它返回以下错误:
The name ‘Education’ is either already used in your application or
reserved by Ruby on Rails. Please choose an alternative and run this
generator again.
由于我刚刚创建了一个新应用程序并且只有一个其他模型,因此该应用程序中没有使用该名称,我很难想到为什么Rails会保留这样的名称的原因?
(我已经尝试将名称更改为其他内容,并且它按预期工作.由于名称确实符合其目的,我不想更改其名称,除非没有其他方法!)
我使用Ruby 2.0.0与Rails 4.0.0和Postgresql