You can achieve this by disabling the inheritance_column
for the model, like so:
class AnotherSection < Section
# disable STI
self.inheritance_column = :_type_disabled
end
You can achieve this by disabling the inheritance_column
for the model, like so:
class AnotherSection < Section
# disable STI
self.inheritance_column = :_type_disabled
end