当我创建一对一的关系迁移时,laravel会创建一对多的关系。
PHP 7.1& MySQL 5.7
模特是:Persona&用户。
假面:
public function user()
{
return $this->hasOne('App\User', 'persona_id', 'id');
}
用户:
public function persona()
{
return $this->belongsTo('App\Persona', 'persona_id', 'id');
}
迁移:
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->integer('persona_id')->unsigned();
$table->foreign('persona_id')->references('id')->on('personas')->onDelete('cascade');
$table->unique(['persona_id', 'id']);
$table->string('email')->nullable()->unique();
$table->string('password')->nullable();
$table->rememberToken();
$table->timestamps();
});
Schema::create('personas', function (Blueprint $table) {
$table->increments('id');
$table->string('tipo');
$table->integer('cedula')->unsigned()->unique();
$table->string('primer_nombre');
$table->string('segundo_nombre')->nullable();
$table->string('primer_apellido');
$table->string('segundo_apellido')->nullable();
/* Agregar demas campos que se requieran */
$table->timestamps();
});
如何逐个创建在数据库中创建的关系,而不是一对多? 目前,这允许我每人保存多个用户。
感谢。
答案 0 :(得分:0)
仅将唯一索引放在persona_id
:
$table->unique('persona_id');
答案 1 :(得分:0)
我将替换为:
$table->integer('persona_id')->unsigned();
$table->unique(['persona_id', 'id']);
作者
$table->integer('persona_id')->unique();