symfony:尝试为修改后的“id”赋值;场地

发布于 2024-10-17 08:19:57 字数 827 浏览 1 评论 0原文

我试图为字段 id 赋予不同的属性(正如您所知,如果您编写“id:~”),字段 id 是可自动递增的并且是主键)。

所以我写了这个:

  nations:
    primary_key:                        { type: INTEGER, size: 5, required: true, primaryKey: true}
    id:                                 { type: INTEGER, size: 5, required: true, primaryKey: false}
    name:                               { type: VARCHAR, size: 64 }
    iso_code_2:                         { type: CHAR, size: 2 }
    iso_code_3:                         { type: CHAR, size: 2 }

但是当我尝试加载下面的这个夹具时,我得到这个错误:

  Cannot insert a value for auto-increment primary key (nations.ID)  

这是夹具:

Nations:
  france:
    id: '74'
    iso_code_2: FR
    iso_code_3: fr

那么有什么方法可以强制加载这个夹具?

sf 1.4/propel

问候

哈维

I'm trying to give different attributes to the field id (as you know if you write "id: ~") the field id is autoincrementable and a primary key).

So I have write this:

  nations:
    primary_key:                        { type: INTEGER, size: 5, required: true, primaryKey: true}
    id:                                 { type: INTEGER, size: 5, required: true, primaryKey: false}
    name:                               { type: VARCHAR, size: 64 }
    iso_code_2:                         { type: CHAR, size: 2 }
    iso_code_3:                         { type: CHAR, size: 2 }

But when i try to load this fixture below i get this error:

  Cannot insert a value for auto-increment primary key (nations.ID)  

This is the fixture:

Nations:
  france:
    id: '74'
    iso_code_2: FR
    iso_code_3: fr

So any way to force the loading of this fixture?

sf 1.4/propel

Regards

Javi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三人与歌 2024-10-24 08:19:57

有趣的。以下内容适用于 1.4/Propel,但这确实使用 ID(非自动增量)作为 PK。事实上,您的错误将 Nations.ID 称为 PK 字段,这听起来像是一个错误。

id:
  type: integer
  primaryKey: true
  required: true

Interesting. The following works for me in 1.4/Propel, but this does use ID (non-autoincrement) as PK. The fact that your error calls nations.ID a PK field makes it sound like a bug.

id:
  type: integer
  primaryKey: true
  required: true
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文