課程
/后端開發(fā)
/PHP
/輕松學(xué)會(huì)Laravel-高級(jí)篇
顯示指定密鑰太長了
2018-03-13
源自:輕松學(xué)會(huì)Laravel-高級(jí)篇 4-1
正在回答
剛好我也遇到了??赡苁菙?shù)據(jù)長度沒有指定,造成超長
你在migrate的代碼里加入 Schema::defaultStringLength(191);
如下
public function up()
? ? {
? ? ? ? Schema::defaultStringLength(191); //new add
? ? ? ? Schema::create('users', function (Blueprint $table) {
? ? ? ? ? ? $table->increments('id');
? ? ? ? ? ? $table->string('name');
? ? ? ? ? ? $table->string('email')->unique();
? ? ? ? ? ? $table->string('password');
? ? ? ? ? ? $table->rememberToken();
? ? ? ? ? ? $table->timestamps();
? ? ? ? });
然后
在cmd里面執(zhí)行
php artisan migrate:fresh?
//刪除原數(shù)據(jù)表并新建
就行了
舉報(bào)
Laravel框架高級(jí)教程,介紹Laravel提供的工具和功能,快來體驗(yàn)
1 回答laravel是不是沒寫一個(gè)方法需要定義一個(gè)路由?會(huì)不會(huì)太麻煩了
5 回答php artisan migrate指令報(bào)錯(cuò),求解
2 回答使用 Storage::disk() 會(huì)報(bào)錯(cuò)
3 回答運(yùn)行php artisan 會(huì)報(bào)錯(cuò)
1 回答為什么會(huì)出現(xiàn)沒有發(fā)現(xiàn)Storage這個(gè)類
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2018-03-26
剛好我也遇到了??赡苁菙?shù)據(jù)長度沒有指定,造成超長
你在migrate的代碼里加入 Schema::defaultStringLength(191);
如下
public function up()
? ? {
? ? ? ? Schema::defaultStringLength(191); //new add
? ? ? ? Schema::create('users', function (Blueprint $table) {
? ? ? ? ? ? $table->increments('id');
? ? ? ? ? ? $table->string('name');
? ? ? ? ? ? $table->string('email')->unique();
? ? ? ? ? ? $table->string('password');
? ? ? ? ? ? $table->rememberToken();
? ? ? ? ? ? $table->timestamps();
? ? ? ? });
然后
在cmd里面執(zhí)行
php artisan migrate:fresh?
//刪除原數(shù)據(jù)表并新建
就行了