I have a parent class
class A
has_many: B
end
and child class
class C < A
end
C must inherit A.
BUT
I don't want C to have an association with B how to I can implement it?
sorry for my English.
I have a parent class
class A
has_many: B
end
and child class
class C < A
end
C must inherit A.
BUT
I don't want C to have an association with B how to I can implement it?
sorry for my English.