[php] Laravel 5.4: Specified key was too long error
첨부 '1' |
|
---|
Laravel 5.4: Specified key was too long error
Laravel 5.4 made a change to the default database character set, and it’s now utf8mb4 which includes support for storing emojis. This only affects new applications and as long as you are running MySQL v5.7.7 and higher you do not need to do anything.
For those running MariaDB or older versions of MySQL you may hit this error when trying to run migrations:
[Illuminate\Database\QueryException]
SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes (SQL: alter table users add unique users_email_unique(email))
[PDOException]
SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes
As outlined in the Migrations guide to fix this all you have to do is edit your AppServiceProvider.php file and inside the boot method set a default string length:
Laravel 5.4 에서 기본 데이터베이스 캐릭터셋이 변경됐고, utf8mb4 이모티콘을 지원한다.
이것은 새로운 프로젝트에 영향을 미치며 MySQL 5.7.7 이상이라면 아무것도 할 필요 없다.
MariaDB 또는 이전 버전의 MySQL을 사용하면 마이그레이션을 실행할 때 오류가 발생할 수 있다.
Migrations 가이드에 안내한대로 다음과 같이 AppServiceProvider.php 파일을 편집하여 기본 문자열 길이를 설정하면 된다.
# app/Providers/AppServiceProvider.php
use Illuminate\Support\Facades\Schema; public function boot() { Schema::defaultStringLength(191); }
After that everything should work as normal.
[출처] https://laravel-news.com/laravel-5-4-key-too-long-error
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
735 | Develop | [ios] XCode에서 Provisioning Profile 여러개 중복될 때 | hooni | 2014.06.26 | 3676 |
734 | Develop | [python][django] request.cookie 읽어오기 ㅋㅋㅋ (쓰기) | hooni | 2019.12.06 | 3680 |
733 | Develop |
[ios] Locale Identifiers
![]() |
hooni | 2018.11.29 | 3712 |
732 | Develop | [python] 파라미터 앞에 *, ** 의 의미? (*args, **kwargs) | hooni | 2019.11.22 | 3782 |
731 | Develop | [펌] 게임 엔진 만든거 공개합니다. | hooni | 2015.02.21 | 3785 |
730 | Develop | [js] jQuery, Javascript 모바일(스마트폰) 판단하는 방법 | hooni | 2015.04.26 | 3790 |
729 | Develop |
[ios] iOS앱의 Xcode 빌드 과정
![]() |
hooni | 2015.01.03 | 3807 |
728 | Develop | [c] 셀프 넘버(Self Number) 구하기 1 | hooni | 2016.09.09 | 3823 |
727 | Develop | [coding] Find all anagrams in a string | hooni | 2017.06.27 | 3847 |
726 | Develop | [ios] Xcode cannot run using the selected device | hooni | 2014.08.14 | 3861 |
725 | Develop | [ios] TextField 특정 문자만 사용하도록 하기 | hooni | 2014.06.30 | 3886 |
724 | Develop | [php] mysql_ 과 mysqli_ 의 차이 | hooni | 2017.12.01 | 3914 |