2つの列に一意の制約を設定するにはどうすればよいですか?
class MyModel extends Migration {
public function up()
{
Schema::create('storage_trackers', function(Blueprint $table) {
$table->increments('id');
$table->string('mytext');
$table->unsignedInteger('user_id');
$table->engine = 'InnoDB';
$table->unique('mytext', 'user_id');
});
}
}
MyMode::create(array('mytext' => 'test', 'user_id' => 1);
// this fails??
MyMode::create(array('mytext' => 'test', 'user_id' => 2);
Laravel 4の
—
Organic Advocate
この詳細レベルは、Laravelのドキュメントにはありません。ついでに言っておくのはとても簡単でしょう。このような詳細と-たとえば-フレームワークは常に、すべてのテーブルが自動インクリメントすることを想定しているように見える
—
cartbeforehorse 2017
id
ので、フレームワークの端にアマチュア的な感じを与えます。私は怒っていますか?:-(