I just came across with such a line in some model in Rails:
self.inheritance_column = :_type_disabled
What does it do?
I just came across with such a line in some model in Rails:
self.inheritance_column = :_type_disabled
What does it do?
Copyright © 2021 Jogjafile Inc.
And I realised what's the answer during writing the question. It disables single table inheritance, what practically means that Rails won't assume that I have a special
typefield in my model and my eventual inheritation will have consequences only on code level, not in the database.