首页 > 解决方案 > SQLSTATE[IM001]:驱动程序不支持此功能:驱动程序不支持该属性

问题描述

虽然通过迁移更改表会出错,

SQLSTATE[IM001]:驱动程序不支持此功能:驱动程序不支持该属性

由于该方法,此错误来自$table->string('api_key')->change();此行有问题。change()

我正在使用 mssql 版本 = Microsoft SQL Server 2019 (RTM-CU9) (KB5000642) - 15.0.4102.2 (X64) php 版本 = 7.1


use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class AddTaxesToFeesMasterTable extends Migration
{
 /**
  * Run the migrations.
  *
  * @return void
  */
 public function up()
 {
     Schema::table('api_keys', function (Blueprint $table) {
         $table->string('api_key')->nullable()->change();
     });
 }

 /**
  * Reverse the migrations.
  *
  * @return void
  */
 public function down()
 {
     Schema::table('api_keys', function (Blueprint $table) {
         //
     });
 }
}

错误

标签: phpsql-serverlaravellaravel-5.7

解决方案


推荐阅读