Reputation: 452
In Concrete Inheritance, is it possible to mark parent as abstract and have NO table generated for it?
For instance:
› That would generate all 3 classes (one abstract), but only 2 tables (table B and table C)
Upvotes: 0
Views: 22
Reputation: 1364
Use skipSql on table definition:
<table name="abstract_a" idMethod="native" skipSql="true">
...
</table>
Upvotes: 1