laravel 기본키가 문자열일때 모델 세팅 > IT 기술백서

라라벨 모델은 기본적으로 primary key를 정수로 인식한다.

만약 문자열기본키라면 아래와 같이 모델에서 정의해 줘야 한다.

 

[code]

class Product extends Model

{

    protected $primaryKey = ‘id’;

 

    public $incrementing = false;

 

    protected $keyType = ‘string’;

}

[/code]

댓글 달기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

위로 스크롤