0

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

但是,当我运行 './symfony dictionary:build --model' 时,我得到了错误:

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

有人可以帮忙吗...

该方案如下所示:

Jobeet类别:
  actAs: { 时间戳: ~ }
  列:
    名称:{类型:字符串(255),notnull:真,唯一:真}
4

1 回答 1

0

您提供的代码对我有用。但是试试看:

JobeetCategory:
  actAs: { Timestampable: ~ }
  columns:
    name: { type: string(255), notnull: true }
  indexes:
    unique_fields:       { type: unique, fields: [name] }
于 2011-08-05T00:48:39.607 回答