gpt4 book ai didi

php - 如何在 Laravel 5.2 中创建唯一约束?

转载 作者:可可西里 更新时间:2023-10-31 22:52:16 24 4
gpt4 key购买 nike

如何使用 laravel 5.2 Schema Builder 创建唯一约束?

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

$table->increments('id');
$table->integer('table1_id')->unsigned();
$table->integer('table2_id')->unsigned();

$table->foreign('table1_id')->references('id')->on('table1');
$table->foreign('table2_id')->references('id')->on('table2');

//Here i need to add an unique constraint to 'key1' + 'key2'

});

最佳答案

您可以将数组传递给 unique 方法。

$table->unique(['key1', 'key2']);

记录在 Available Index Typesmanual

关于php - 如何在 Laravel 5.2 中创建唯一约束?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36843328/

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