如何为具有命名空间的模型编写关系?
如果我有Class Foo::Bar
并且Class Employee
我想在他们之间有 habtm 我会写吗
Class Foo::Bar
has_and_belongs_to_many :employees
end
并且在
Class Employee
has_and_belongs_to_many ???? # <- how do I write this part?
end
如何为具有命名空间的模型编写关系?
如果我有Class Foo::Bar
并且Class Employee
我想在他们之间有 habtm 我会写吗
Class Foo::Bar
has_and_belongs_to_many :employees
end
并且在
Class Employee
has_and_belongs_to_many ???? # <- how do I write this part?
end