Migration

· PHP/Laravel
Larvel에서 Migration을 작성할 때 단일 칼럼에 대한 Unique 속성이 아닌 여러 개의 컬럼을 대상인 복합키로 Unique 속성을 줘야 할 경우 아래처럼 사용이 가능합니다. 기존처럼 단일 컬럼에 Uniuqe를 부여하는 것이 아닌 public function up() { Schema::create('테이블 명', function (Blueprint $table) { $table->id(); $table->foreignId('participant_id')->comment('참여자 아아디')->unique(); $table->foreignId('product_id')->comment('상품 아아디'); $table->timestamp('created_at')->index()->comment('참여..
DSeung
'Migration' 태그의 글 목록