英文:
Laravel : unique() not applied in migration
问题
为什么 unique()
没有生效?
我在 PgAdmin 的约束列表中没有看到它应用在这个列上。
英文:
In my migration, I have this column:
$table->foreignId('child_id')
->references('id')
->on('myschema.users')
->nullable()
->unique()
->constrained();
Why unique()
is not applied?
I don't see it in the list of constaints in PgAdmin for this column.
答案1
得分: 1
因为 'child_id' 是外键,而外键通常是唯一的,所以唯一不会被应用,而且在迁移中创建外键时不需要提到唯一性。希望这对您有帮助。
英文:
Because 'child_id' is foreign_key and always foreign_key is unique that's why unique is not applied also you don't need to mention unique while creating forign_key in migration. I hope this can be helpful to you.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论