名前空間を持つモデルのリレーションを作成するにはどうすればよいですか?
私が持っていて、それらの間にhabtmを持ちたい場合、私はClass Foo::Bar
書きClass Employee
ますか
Class Foo::Bar
has_and_belongs_to_many :employees
end
そして
Class Employee
has_and_belongs_to_many ???? # <- how do I write this part?
end
名前空間を持つモデルのリレーションを作成するにはどうすればよいですか?
私が持っていて、それらの間にhabtmを持ちたい場合、私はClass Foo::Bar
書きClass Employee
ますか
Class Foo::Bar
has_and_belongs_to_many :employees
end
そして
Class Employee
has_and_belongs_to_many ???? # <- how do I write this part?
end