我新建了一个 rails 项目,在下面建了一个新 Model 为Topic
然后添加一个关联 Model Tag
,启动 sever 后,我发现Tag
是不能编辑的,于是我想在 rails console 里面写入值,我的Tag
这样写的
class CreateTags < ActiveRecord::Migration
def change
create_table :tags do |t|
t.string :name
t.references :topic
t.timestamps
end
add_index :tags, :topic_id
end
end
我在 console 里应该怎样命令呢 Tag.create(name:'ruby',topic:' ')
这样子的对么