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' 으로 설정해줘야 합니다.
$keyType
(라라벨 한국어 가이드)
/** * The "type" of the primary key ID. * * @var string */ protected $keyType = 'string';
아래는 keyType 프로퍼티 값을 string 으로 선언해줘야 하는 모델 목록입니다.
keyType
string
PageDocument
💡PageDocument 모델은 부모 클래스인 Xpressengine\Document\Models\Document 에서 keyType 프로퍼티를 설정하고 있습니다.
Xpressengine\Document\Models\Document
The text was updated successfully, but these errors were encountered:
xharpenParksuhyeon
No branches or pull requests
라라벨 6.0에는 integer 키 타입을 위한 성능 향상이 추가되었습니다.
만약 모델의 Primary Key로 문자열 타입을 사용중이라면,
$keyType
프로퍼티 값을 'string' 으로 설정해줘야 합니다.(라라벨 한국어 가이드)
아래는
keyType
프로퍼티 값을string
으로 선언해줘야 하는 모델 목록입니다.PageDocument
💡PageDocument 모델은 부모 클래스인
Xpressengine\Document\Models\Document
에서keyType
프로퍼티를 설정하고 있습니다.The text was updated successfully, but these errors were encountered: