最佳答案
在运行 Php 工匠迁移时,我得到了以下错误
[ Doctrine DBAL DBALException ]
未知的数据库类型枚举请求,理论 DBAL 平台 MySqlPlatform 可能不支持它。
如何解决这个问题。
密码:
public function up() {
Schema::table('blogs', function (Blueprint $table) {
$table->string('wordpress_id')->nullable();
$table->string('google_blog_id')->nullable()->change();
});
}