标签: inheritance orm propel
在Concrete Inheritance中,是否可以将父标记为抽象并且没有为其生成表格?
例如:
>那将生成所有3个类(一个抽象),但只生成2个表(表B和表C)
答案 0 :(得分:1)
在表格定义上使用skipSql:
<table name="abstract_a" idMethod="native" skipSql="true"> ... </table>