我使用RubyMine CTRL + ALT + G生成了一个名为User的模型
class CreateUsers < ActiveRecord::Migration[5.2]
def change
create_table :users do |t|
t.timestamps
end
end
end
我尝试使用自动完成功能,但它不起作用。
我删除了[5.2]
。可以。
class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.timestamps
end
end
end
我正在RubyMine 2018.2上的RVM安装中使用Rails 5.2和Ruby 2.5.1p57
我尝试使缓存无效。
我如何获得自动完成功能?