今天在執(zhí)行l(wèi)aravel migrate時(shí)出現(xiàn)異常,找了好半天才找到問題所在,特此記錄一下。
創(chuàng)新互聯(lián)公司服務(wù)項(xiàng)目包括萊州網(wǎng)站建設(shè)、萊州網(wǎng)站制作、萊州網(wǎng)頁制作以及萊州網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,萊州網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到萊州省份的部分城市,未來相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
配好數(shù)據(jù)庫,執(zhí)行 ``` php artisan migrate ```。但是遇到了問題:
migrations中up函數(shù)為:
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
}
執(zhí)行
E:\work\www\blog>php artisan migrate
出現(xiàn)異常:
Migration table created successfully.
[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
網(wǎng)上也沒查不明所以,在 stackoverflow上有人說跟數(shù)據(jù)庫引擎有關(guān)(InnoDB 的 key 支持 767 字節(jié),而 MyISAM 支持 1000 字節(jié)。) (http://stackoverflow.com/questions/1814532/1071-specified-key-was-too-long-max-key-length-is-767-bytes)。
但是我嘗試了 MyISAM 仍然報(bào)同樣錯(cuò)誤,只是 767 變?yōu)榱?1000。
后來我在數(shù)據(jù)庫配置文件發(fā)現(xiàn)了端倪 ```config/database.php``` (laravel版本為5.4):
老的 5.3
```php
'MySQL' => [
'driver' => 'mysql',
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
'strict' => true,
'engine' => null,
],
```
新的 5.4
```php
'mysql' => [
'driver' => 'mysql',
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => '',
'strict' => true,
'engine' => null,
],
```
發(fā)現(xiàn)沒 laravel 5.4 開始使用 utf8mb4 數(shù)據(jù)庫字符集了。這個(gè)字符集在 MySQL 5.5.3 開始支持。
[utf8 和 utf8mb4 區(qū)別看這里](http://ourmysql.com/archives/1402)
如是將 ``` config/database.php ``` 改為
```
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
```
重新執(zhí)行``` php artisan migrate ```,success!