我一直得到這一點的同時運行php artisan migrate
刪除唯一索引Laravel 5
SQLSTATE [42000]:語法錯誤或訪問衝突:1091不能DROP '電子郵件';檢查列/密鑰是否存在
雖然我看到電子郵件存在於我的數據庫中。
我的遷移腳本。我試圖放棄唯一的約束。
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AlterGuestsTable3 extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('guests', function(Blueprint $table)
{
$table->dropUnique('email');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('guests', function(Blueprint $table)
{
$table->dropUnique('email');
});
}
}
我忘了清除任何緩存嗎?
對我有什麼提示?
您是否試圖完全刪除唯一索引或電子郵件列?此外,只是單挑,您的下拉功能也會嘗試刪除索引,而不是重新創建索引。 – stratedge
我只想刪除唯一索引。 – ihue