gpt4 book ai didi

php - Laravel 数据库模式,可以为空的外部

转载 作者:IT老高 更新时间:2023-10-28 23:56:31 25 4
gpt4 key购买 nike

我有这两个数据库表:

  1. 用户表
  2. 合作伙伴表

User Tables 将处理此类信息

Schema::create('users', function (Blueprint $table) {
$table->increments('id')->unique();
$table->string('email')->unique();
$table->string('username')->unique();
$table->string('password', 60);
$table->string('photo')->nullable();
$table->integer('partner_id')->unsigned();
$table->foreign('partner_id')->references('id')->on('partners');
$table->rememberToken();
$table->timestamps();
});

Partner Tables 将包含所有用户元信息,例如名字和姓氏等。

Schema::create('partners', function (Blueprint $table) {

/**
* Identity Columns
*/
$table->increments('id')->unique();
$table->string('first_name');
$table->string('middle_name')->nullable();
$table->string('last_name')->nullable();
$table->string('display_name')->nullable();
$table->string('email')->unique()->nullable();
$table->string('website')->nullable();
$table->string('phone')->nullable();
$table->string('mobile')->nullable();
$table->string('fax')->nullable();
$table->date('birthdate')->nullable();
$table->longText('bio')->nullable();
$table->string('lang')->nullable(); //Language

/**
* Address Columns
*/
$table->text('street')->nullable();
$table->text('street2')->nullable();
$table->integer('country_id')->unsigned(); // foreign
$table->foreign('country_id')->references('id')->on('countries');
$table->integer('state_id')->unsigned(); // foreign
$table->foreign('state_id')->references('id')->on('country_states');
$table->string('city')->nullable();
$table->string('district')->nullable();
$table->string('area')->nullable();
$table->string('zip')->nullable();
});

当用户注册到网站时,我只需要几个字段,usernameemail addresspassword名字姓氏。这些只是必填字段。

因此,合作伙伴表中的信息可以在用户完成网站注册后填写。

但由于外键的结构,我无法继续进行,因为这个错误:

SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`mytable`.`tbl_partners`, CONSTRAINT `partners_country_id_foreign` FOREIGN KEY (`country_id`) REFERENCES `tbl_countries` (`id`)) (SQL: insert into `tbl_partners` (`first_name`, `last_name`, `display_name`, `email`, `updated_at`, `created_at`) values (Jack, Wilson, admin, admin@example.com, 2016-06-09 19:41:18, 2016-06-09 19:41:18))

我知道这是由合作伙伴表所需的国家/地区表引起的。
我的问题是:是否有解决方法,以便我可以在合作伙伴表上填写国家或任何其他不需要的数据,但保留国家、州等的外部表架构。

最佳答案

对于 laravel 7.x 创建一个可为空的外键简单地使用:

$table->foreignId('country_id')->nullable()->constrained();

$table->foreignId('state_id')->nullable()->constrained();

记住:nullable 应该在之前 constrained 否则 nullable 不会受到影响。

关于php - Laravel 数据库模式,可以为空的外部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37735055/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com