路径“JobeetCategory-> columns-> name”中名为“notnull”的无效架构元素

时间:2011-08-04 22:37:25

标签: symfony1 model doctrine jobeet

我正在运行Symphony 1.4并在以下教程中: http://www.symfony-project.org/jobeet/1_4/Doctrine/en/03

然而,当我运行'./symfony doctrine:build --model'时,我收到错误:

  

路径“JobeetCategory-> columns-> name”中名为“notnull”的无效架构元素

有人可以帮忙......

该计划如下:

JobeetCategory:
  actAs: { Timestampable: ~ }
  columns:
    name: { type: string(255), notnull: true, unique: true }

1 个答案:

答案 0 :(得分:0)

您提供的代码适合我。但试试这个:

JobeetCategory:
  actAs: { Timestampable: ~ }
  columns:
    name: { type: string(255), notnull: true }
  indexes:
    unique_fields:       { type: unique, fields: [name] }