我将 Doctrine2 与 codeIgniter 一起使用,我创建了一些yml
格式的模型。使用命令行我创建了代理和实体。当我尝试创建数据库表时,出现以下错误:
[Doctrine\ORM\Mapping\MappingException]
类 'Entities\category' 的映射文件 'Entities.category.dcm.yml' 无效。
这是Entities.category.dcm.yml
:
Entities\Category:
type: entity
table: categories
fields:
id:
type: integer
id: true
generator:
strategy: AUTO
name:
type: string
length: 50
nullable: false
description:
type: string
length: 255