是否可以在symfony 1.4中与doctrine 1.2(!)进行多态关联?
例如,我在schema.yml中有以下内容:
alBillingElement:
actAs:
Timestampable:
columns:
id: {type: integer(11), primary: true, autoincrement: true}
object_type: {type: varchar(20)}
object_id: {type: integer(11)}
task: {type: varchar(20)}
parameter: {type: text}
amount: {type: float}
object_type
包含object_id
引用的对象的模型名称。
我可以以某种方式定义一个关系,以便我可以使用关系查询“对象”吗?