8
Laravel 5.1请求的未知数据库类型枚举
运行php artisan migration时,出现以下错误 [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(); }); }