在多对多关系中命名表 laravel
naming tables in many to many relationships laravel
我担心在多对多 Laravel 关系中自动命名 tables。
例如:
Schema::create('feature_product', function (Blueprint $table) {}
将 table 名称更改为:
Schema::create('product_feature', function (Blueprint $table) {}
我的恋爱关系有误。
product_feature
怎么了?
Laravel 对枢轴 tables 的命名约定是 snake_cased 模型名称按字母顺序排列,并用下划线分隔。因此,如果一个模型是 Feature
,另一个模型是 Product
,则枢轴 table 将是 feature_product
。
您可以随意使用任何您想要的 table 名称(例如 product_feature
),但是您需要在关系中指定枢轴 table 的名称。这是使用 belongsToMany()
函数的第二个参数完成的。
// in Product model
public function features()
{
return $this->belongsToMany('App\Feature', 'product_feature');
}
// in Feature model
public function products()
{
return $this->belongsToMany('App\Product', 'product_feature');
}
您可以阅读有关 many to many relationships in the docs 的更多信息。
我担心在多对多 Laravel 关系中自动命名 tables。
例如:
Schema::create('feature_product', function (Blueprint $table) {}
将 table 名称更改为:
Schema::create('product_feature', function (Blueprint $table) {}
我的恋爱关系有误。
product_feature
怎么了?
Laravel 对枢轴 tables 的命名约定是 snake_cased 模型名称按字母顺序排列,并用下划线分隔。因此,如果一个模型是 Feature
,另一个模型是 Product
,则枢轴 table 将是 feature_product
。
您可以随意使用任何您想要的 table 名称(例如 product_feature
),但是您需要在关系中指定枢轴 table 的名称。这是使用 belongsToMany()
函数的第二个参数完成的。
// in Product model
public function features()
{
return $this->belongsToMany('App\Feature', 'product_feature');
}
// in Feature model
public function products()
{
return $this->belongsToMany('App\Product', 'product_feature');
}
您可以阅读有关 many to many relationships in the docs 的更多信息。