Open dineshpanda opened 2 years ago
Can we create both parent and associated children with the import ?
Note: There are no existing parent or child record in the database.
parent.rb
class Parent < ApplicationRecord has_many :children validates :name, presence: true validates :age, presence: true end
child.rb
class Child < ApplicationRecord belongs_to :parent validates :name, presence: true validates :age, presence: true end
Exported csv from rails admin looks as follows:
name,age,name [child], age [child] P1, 60,"Nick,Mike","30,35"
Can we create both parent and associated children with the import ?
Note: There are no existing parent or child record in the database.
parent.rb
child.rb
Exported csv from rails admin looks as follows: