AR meta-data not inheritable

What's the rationale for meta-data such as @columns, @indexes, etc not being inheritable attributes? Is it because they're typically not populated until after inherited is called anyway?

Probably because subclassing of AR models doesn’t have to trigger STI. If you have

class Post < Content

… Post data doesn’t have to be stored in the “contents” table.

Well blow me down. Good point :slight_smile: