當(dāng)我嘗試將新列插入 SQL Server 數(shù)據(jù)庫(kù)時(shí),出現(xiàn)以下錯(cuò)誤。SQLSTATE[23000]:[Microsoft][SQL Server 的 ODBC 驅(qū)動(dòng)程序 17][SQL Server]無(wú)法在具有唯一索引“users_api_token_unique”的對(duì)象“dbo.users”中插入重復(fù)的鍵行。重復(fù)的鍵值為()。(SQL:插入[用戶]([名稱]、[電子郵件]、[密碼]、[updated_at]、[created_at])值(ibramin salah、ibra@gmail.com、$2y$10$laopDTNj9Ddzr4cf4a4ctuxYwra5raqm8TXXBS.Rc2wBH2mnf.cJG, 2020-08-07 08:57:49.077, 2020-08-07 08:57:49.077))表架構(gòu)Schema::create('users', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->boolean('adminCreation')->default(0); $table->rememberToken(); $table->timestamps();});我正在使用 Laravel 5.8 和 PHP 版本 7.4.4。
SQLSTATE[23000]:無(wú)法在對(duì)象中插入重復(fù)的鍵行
開(kāi)滿天機(jī)
2023-09-22 14:43:05