gpt4 book ai didi

symfony - 教义迁移,使用自定义教义类型的问题

转载 作者:行者123 更新时间:2023-12-04 13:42:03 25 4
gpt4 key购买 nike

我正在使用Symfony2 + Doctrine2构建应用程序。我的应用程序需要存储地理空间数据,因此我编写了正确的学说扩展。一切运行良好,并且该应用程序已经在生产环境中运行了很长时间。

现在,我必须添加一些新功能,并且需要更新数据库而不删除所有数据。我想使用DoctrineMigrationBundle,但是当我运行时:

$ php app/console doctrine:migrations:status

我收到此错误:
[Doctrine\DBAL\DBALException]                                                                     
Unknown database type point requested,
Doctrine\DBAL\Platforms\MySqlPlatform may not
support it.

这是我的config.yml的相关部分:
# Doctrine Configuration
doctrine:
dbal:
driver: %database_driver%
host: %database_host%
port: %database_port%
dbname: %database_name%
user: %database_user%
password: %database_password%
charset: UTF8
types:
point: App\EngineBundle\DoctrineExtensions\PointType

自定义类型“点”已被映射,所以我在做什么错呢?

最佳答案

我回答了我自己的问题,似乎是DoctrineMigrations还需要为自定义类型映射。所以config.yml应该看起来像这样:

# Doctrine Configuration
doctrine:
dbal:
driver: %database_driver%
host: %database_host%
port: %database_port%
dbname: %database_name%
user: %database_user%
password: %database_password%
charset: UTF8
types:
point: App\EngineBundle\DoctrineExtensions\PointType
mapping_types:
point: point

关于symfony - 教义迁移,使用自定义教义类型的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11470630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com