laravel Doctrine\DBAL\DBALExcept

2019-02-12  本文已影响0人  程序小白菜

在laravel中用Schema获取数据库表信息时,报错:

Doctrine\DBAL\DBALException : Unknown database type geometry requested, Doctrine\DBAL\Platforms\MySQL57Platform may not support it.

tips:意思是说Doctrine mysql5.7对geometry数据类型不支持

解决方法:

use Illuminate\Support\Facades\Schema;

$schema = Schema::getConnection()->getDoctrineSchemaManager();

$schema->getDatabasePlatform()->registerDoctrineTypeMapping('geometry', 'string');

上一篇下一篇

猜你喜欢

热点阅读