- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试进行迁移以删除组合的唯一键失败,但没有错误。
我已经使用 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/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!