当我创建一对一关系迁移时,laravel会创建一对多关系。
PHP 7.1和MySQL 5.7
这些模型是:角色和用户。
角色:
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();
});
如何使在数据库中创建的关系一对一而不是一对多?
目前,这使我每人可以节省多个用户。
谢谢。
最佳答案
仅将唯一索引放在persona_id
上:
$table->unique('persona_id');
关于php - Laravel:一对一关系变成一对多关系,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49986148/