我在symfony2中加载推进装置时遇到问题。我有以下架构:
<table name="application" phpName="Application">
<column name="id" type="integer" required="true" primaryKey="true" autoIncrement="true" />
<column name="name" type="varchar" required="true" primaryString="true" />
<behavior name="timestampable" />
</table>
<table name="application_iphone" phpName="IphoneApplication">
<column name="store_id" type="varchar" required="true" />
<behavior name="concrete_inheritance">
<parameter name="extends" value="application" />
</behavior>
</table>
<table name="application_identifier" phpName="IphoneApplicationIdentifier">
<column name="id" type="integer" required="true" primaryKey="true" autoIncrement="true" />
<column name="application_id" required="true" type="integer" />
<column name="identifier" type="varchar" required="true" primaryString="true" />
<foreign-key foreignTable="application_iphone">
<reference local="application_id" foreign="id" />
</foreign-key>
</table>
模型构建正确。当我尝试加载以下设备时,会出现此问题:
Acme\MyBundle\Model\Application:
first_app:
name: "MyFirstApp"
descendant_class: "IphoneApplication"
Acme\MyBundle\Model\IphoneApplication:
first_app_iphone:
id: first_app
store_id: 2342
Acme\MyBundle\Model\IphoneApplicationIdentifier:
first_app_identifier:
identifier: "com.acme.myfirstapp.appstore"
application_id: first_app_iphone
出现以下错误:
[推进]异常
无法插入自动递增主键(application.id)的值
我添加了两次“第一个应用程序”应用程序(一次在应用程序中,另一次在iphoneapplication中),以防止iphoneapplicationidentifier设备出现另一个问题:
[推进]类中的“第一个应用程序”对象异常
数据文件中未定义“acme\mybundle\model\application”。
如何为具体的继承模型插入夹具?
最佳答案
Propel告诉您,您正在尝试为自动增量列设置一个值,这是由于
id: first_app
线。
如果我理解正确,您只想添加一个iphoneapplication项,对吗?如果是这样的话,你只需要做:
Acme\MyBundle\Model\IphoneApplication:
first_app_iphone:
name: "MyFirstApp"
store_id: 2342