你好,
我正在使用推进 orm 开发 symfony 1.4。我有这个错误:500 | Internal Server Error | PropelException
[wrapped: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'my_app_language_i18n.LIBELLE' in 'order clause']
我的是不知道如何解决这个问题。该列在数据库中存在同名。Symfony 使用 schema.yml 文件来连接数据库的实体和表。
my_app_language_i18n:
_attributes: { phpName: MyAppLanguageI18n }
id: { phpName: Id, type: INTEGER, size: '11', primaryKey: true, required: true, foreignTable: my_app_language, foreignReference: id, onDelete: CASCADE, onUpdate: CASCADE }
culture: { phpName: Culture, type: VARCHAR, size: '7', primaryKey: true, required: true }
libelle: { phpName: Libelle, type: VARCHAR, size: '255', required: true }
我没有更改此表/实体上的某些内容我没有处理它我不知道此错误出现的原因和位置。我试图重建 schema.yml 但错误仍然存在。如果有人遇到这种类型的错误..感谢您的帮助。