3

我在 Symfony2 中加载 Propel 固定装置时遇到问题。我有以下架构:

<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

出现以下错误:

[Propel] 异常
无法为自增主键 (application.ID) 插入值

我添加了两次“first_app”应用程序(一个在Application中,另一个在IphoneApplication中)以防止我的IphoneApplicationIdentifier夹具出现另一个问题:

[Propel] 异常“Acme\MyBundle\Model\Application”类中的对象“first_app”未在您的数据文件中定义。

如何为具体的继承模型插入夹具?

4

3 回答 3

3

Propel 告诉您您正在尝试为自动增量列设置值,这是由于

    id: first_app

线。

如果我对您的理解正确,您只想添加一个 Iphoneapplication 项目,对吗?如果是这种情况,您只需要这样做:

Acme\MyBundle\Model\IphoneApplication:
    first_app_iphone:
        name: "MyFirstApp"
        store_id: 2342
于 2012-08-07T15:44:14.967 回答
1

我有类似的情况,最终得到了不同的模式文件。为了测试一个 - 我从模式中删除了自动增量并定义了另一个存储模型的地方。很久以前,但一般步骤如下:


  1. 用于生产环境的转储装置

    app/console propel:fixtures:dump
    
  2. 构建测试数据库所需的一切

    app/console propel:database:create --env=test
    app/console propel:sql:build --env=test
    app/console propel:sql:insert --force --env=test
    app/console propel:model:build --env=test
    
  3. 将夹具导入测试数据库

    app/console propel:fixtures:load --env=test
    

请注意,命令可能因 Propel 版本而异

于 2012-08-07T15:21:43.093 回答
0

通过详细解释我的问题,我发现了错误。该问题并非来自此固定装置文件。我的错误对我来说似乎很奇怪。为什么错误提到 *first_app* 而不是 *iphone_first_app*?

在深入研究其他夹具文件后,我发现了一个被遗忘的对 *first_app* 的引用。解决方案如下(如 Carlos Granados 所述):

Acme\MyBundle\Model\IphoneApplication:
    first_app_iphone:
        name: "My first app"
        store_id: 2342

Acme\MyBundle\Model\IphoneApplicationIdentifier:     
    first_app_identifier:
        identifier: "com.acme.myfirstapp.appstore"
        application_id: first_app_iphone

不需要定义基类。:)

于 2012-08-07T16:11:38.927 回答