We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
라라벨 6.0에는 integer 키 타입을 위한 성능 향상이 추가되었습니다. 만약 모델의 Primary Key로 문자열 타입을 사용중이라면, $keyType 프로퍼티 값를 string 으로 설정해야 합니다.
string
(라라벨 한국어 가이드)
/** * The "type" of the primary key ID. * * @var string */ protected $keyType = 'string';
아래는 keyType 프로퍼티 값을 string 으로 선언해줘야 하는 모델 목록입니다.
keyType
The text was updated successfully, but these errors were encountered:
#18 Group 모델의 keyType 프로퍼티 값을 'string'으로 설정
0d93e02
#18 Item 모델의 keyType 프로퍼티 값을 'string'으로 설정
835a01d
Laravel 5.5 to 6.x (#19)
2bec06a
* #18 Group 모델의 keyType 프로퍼티 값을 'string'으로 설정 * #18 Item 모델의 keyType 프로퍼티 값을 'string'으로 설정
xharpenParksuhyeon
No branches or pull requests
라라벨 6.0에는 integer 키 타입을 위한 성능 향상이 추가되었습니다.
만약 모델의 Primary Key로 문자열 타입을 사용중이라면, $keyType 프로퍼티 값를
string
으로 설정해야 합니다.(라라벨 한국어 가이드)
아래는
keyType
프로퍼티 값을string
으로 선언해줘야 하는 모델 목록입니다.The text was updated successfully, but these errors were encountered: