Laravel7如何使用constrained方法来设置数据库外键

来自:互联网
时间:2020-09-09
阅读:
免费资源网 - https://freexyz.cn/

今天,我想写一个快速提示关于在Laravel7中使用外键。

此方法将会帮助您编写更短的迁移,并使代码更具可读性。

在我们的例子中,我使用非常常见的 user_id,它可以应用于任何外键。

以前,我们会这样写:

$table->unsignedBigInteger('user_id')
->index();

$table->foreign('user_id')
->references('id')
->on('users')
->onDelete('cascade');

嗯,有点冗长,对吧?

好消息是我们现在可以这样写 :

$table->foreignId('user_id')
->index()
->constrAIned()
->onDelete('cascade');

更简练且更容易阅读,我希望你喜欢这个提示。

如果你觉得有用的话,请和你的朋友们分享吧。

祝您有个美好的一天。

原文地址:https://dev.to/wolfiton/laravel-7-short-cuts-to-writing-foreign-keys-4c1o

译文地址:https://learnku.com/laravel/t/49371

免费资源网 - https://freexyz.cn/
返回顶部
顶部