データベースにダミー コンテンツをプッシュしたい。私のモデルでは、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
これをどのように行いますか?