Laravel 5.1 请求未知数据库类型枚举
在运行php工匠迁移时,我得到了以下错误
[Doctrine\DBAL\DBALException]
未知数据库类型枚举请求,Doctrine\DBAL\Platforms\MySqlPlatform 可能不支持它。
如何解决此问题。
法典:
public function up() {
Schema::table('blogs', function (Blueprint $table) {
$table->string('wordpress_id')->nullable();
$table->string('google_blog_id')->nullable()->change();
});
}