gpt4 book ai didi

php - 在 Laravel 5 中,迁移到删除组合唯一键不起作用

转载 作者:行者123 更新时间:2023-11-29 11:38:04 24 4
gpt4 key购买 nike

尝试进行迁移以删除组合的唯一键失败,但没有错误。

我已经使用 php artisan make:migration 创建了一个迁移并编辑了代码。所以我有这个

public function up()
{
Schema::table('ques_trilha_itens', function (Blueprint $table) {
$table->dropUnique('trilha_itens_trilha_id_questao_id_unique');
});
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('ques_trilha_itens', function (Blueprint $table) {
$table->unique(['trilha_id', 'questao_id']);
});
}

字符串'trilha_itens_trilha_id_questao_id_unique'是在MySQL中显示为组合唯一键的字符串。所以我认为要使用该字符串来删除两个组合键。

但是当运行php artisan migrate时,没有任何反应,没有错误消息,并且迁移没有执行。

我尝试替换 dropUnique 中的字符串,将表的名称作为第一个术语 ('ques_trilha_itens_trilha_id_questao_id_unique'),但什么也没有。

我缺少什么吗?

更新:

MySQL命令SHOW CREATE TABLE ques_trilha_itens给出:

CREATE TABLE `ques_trilha_itens` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`trilha_id` int(10) unsigned NOT NULL,
`questao_id` int(10) unsigned NOT NULL,
`primeiro_item` tinyint(1) NOT NULL,
`item_principal_id` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`chave` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `trilha_itens_trilha_id_questao_id_unique` (`trilha_id`,`questao_id`),
UNIQUE KEY `ques_trilha_itens_chave_unique` (`chave`),
KEY `trilha_itens_questao_id_foreign` (`questao_id`),
KEY `ques_trilha_itens_item_principal_id_foreign` (`item_principal_id`),
CONSTRAINT `ques_trilha_itens_item_principal_id_foreign` FOREIGN KEY (`item_principal_id`) REFERENCES `ques_trilha_itens` (`id`) ON DELETE SET NULL,
CONSTRAINT `trilha_itens_trilha_id_foreign` FOREIGN KEY (`trilha_id`) REFERENCES `ques_trilhas` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci

最佳答案

好吧,通过反复试验,我发现了我错过了什么。

问题在于,MySQL 不喜欢您在删除这些外键本身之前先尝试删除这些外来引用的组合键。

CONSTRAINT `ques_trilha_itens_item_principal_id_foreign` FOREIGN KEY (`item_principal_id`) REFERENCES `ques_trilha_itens` (`id`) ON DELETE SET NULL,
CONSTRAINT `trilha_itens_trilha_id_foreign` FOREIGN KEY (`trilha_id`) REFERENCES `ques_trilhas` (`id`)

像这样,我们之前也必须删除索引(KEY)。

KEY `trilha_itens_questao_id_foreign` (`questao_id`)

只有在那之后,我才能删除组合键['questao_id', 'trilha_id']

所以最后我的迁移是这样的

/**
* Run the migrations.
*
* @return void
*/

public function up()
{
Schema::table('ques_trilha_itens', function (Blueprint $table) {
// Remove chaves estrangeiras, índices e chaves não estrangeiras
$table->dropForeign('trilha_itens_questao_id_foreign');
$table->dropForeign('trilha_itens_trilha_id_foreign');
$table->dropIndex('trilha_itens_questao_id_foreign');
$table->dropUnique('trilha_itens_trilha_id_questao_id_unique');

// Refaz relações, agora sem a chave dupla
$table->foreign('questao_id')->references('id')->on('ques_questoes');
$table->foreign('trilha_id')->references('id')->on('ques_trilhas');
});
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('ques_trilha_itens', function (Blueprint $table) {
$table->unique(['questao_id', 'trilha_id']);
});
}

关于php - 在 Laravel 5 中,迁移到删除组合唯一键不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36291831/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com