我想在我的数据库中推送虚拟内容。我的模型中有一个 1:n 的关系。
seeds.rb
:
city= City.create([{:ort_name=>"Hagen"}])
person= Person.create([{:name = "root"}])
我试试这个
city << person
和
person.city_id = city.id
你会怎么做?
我想在我的数据库中推送虚拟内容。我的模型中有一个 1:n 的关系。
seeds.rb
:
city= City.create([{:ort_name=>"Hagen"}])
person= Person.create([{:name = "root"}])
我试试这个
city << person
和
person.city_id = city.id
你会怎么做?