In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
Xiaobian to share with you how to define the middle table with time stamp in Laravel many-to-many relationship, I believe most people still do not know how, so share this article for your reference, I hope you have a lot of harvest after reading this article, let's find out together!
Many-to-many: middle table with time stamp
Timestamps are not automatically populated when in many-to-many associations, such as role_user in the middle of users and roles tables.
In this model you can define relationships like this:
class User extends Model{ public function roles() { return $this->belongsToMany(Role::class); }}
Then when you want to add a role to a user, you can use it like this:
$roleID = 1;$user->roles()->attach($roleID);
By default, this intermediate table does not contain timestamps. And Laravel does not try to auto-populate created_at/updated_at
But if you want to save timestamps automatically, you need to add created_at/updated_at to the migration file, and then add->withTimestamps() to the model associations;
public function roles(){ return $this->BelongsToMany(Role::class)->withTimestamps();} The above is "How to define timestamped intermediate tables in Laravel many-to-many relations" All the contents of this article, thank you for reading! I believe that everyone has a certain understanding, hope to share the content to help everyone, if you still want to learn more knowledge, welcome to pay attention to the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.