一些背景有關我的應用程序:未知列型 「JSON」 請求的運行原則2遷移
- ZF2應用
- 學說/ DBAL v2.5.12
- 學說/ ORM v2.5.6
- 主義/ migrations v1.0.0
問題:如果我運行命令migrations:diff
生成從我的實體類的變化遷移時,我得到以下異常:
[Doctrine\DBAL\DBALException] Unknown column type "json" requested.
Any Doctrine type that you use has to be registered with \Doctrine\DBAL\Types\Type::addType(). You can get a list of all the known types with \Doctrine\DBAL\Types\Type::getTypesMap().
說實話,它是相反的。自從DBAL 2.6開始,輸入'json_array' [已棄用](http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/types.html#json-array),你應該只使用' json'。 – s3m3n