您好,登錄后才能下訂單哦!
小編給大家分享一下laravel報(bào)錯(cuò)42S01 420004 42S22]等問題怎么辦,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
laravel避坑筆記
1.Laravel 5.4: Specified key was too long error
原因:從LV 5.4起數(shù)據(jù)庫(kù)默認(rèn)字符集為utf8mb4(包括了對(duì) emojis 的支持)。如果使用的是 MySQL v5.7.7 或更高版本不需要做什么修改。
使用更早版本的MySQL數(shù)據(jù)庫(kù)(包括MariaDB)的童鞋可以這樣修改了,修改文件 /project/app/Providers/AppServiceProvider.php
use Illuminate\Support\Facades\Schema; // 注意要引入命名空間 public function boot() { Schema::defaultStringLength(191); // 針對(duì) 早期 mysql 數(shù)據(jù)遷移 }
再重新使用遷移命令:
php artisan migrate
2.SQLSTATE[42S01]: Base table or view already exists: 1050
遷移數(shù)據(jù)時(shí)表已存在,
解決辦法:
刪除已存在的表,然后重新遷移。
3.PDOException::(“SQLSTATE[42000]: Syntax error or access violation: 1067 Invalid default value for ‘published_at’”)
修改方法一:vim config/database.php
'mysql' => [ 'driver' => 'mysql',.... ... 'prefix' => '', 'strict' => true, // 修改這里 'engine' => null, ],
修改為:
'mysql' => [ 'driver' => 'mysql',.... ... 'prefix' => '', 'strict' => false, // 修改這里 'engine' => null, ],
設(shè)置可為空的時(shí)間戳:
$table->nullableTimestamps()
設(shè)置默認(rèn)時(shí)間戳
$table->timestamps('created_at');// 會(huì)生成created_at\updated_at字段
4.PDOException::(“SQLSTATE[42S22]: Column not found: 1054 Unknown column ‘created_at’ in ‘field list’”)
此問題是由于 table 遷移時(shí)沒有設(shè)置默認(rèn)時(shí)間戳字段,但使用的是 factory 方法 生成 seed 數(shù)據(jù),可以修改
public function up() { Schema::create('posts', function (Blueprint $table) { $table->increments('id'); $table->string('slug')->unique(); $table->string('title'); $table->text('content'); $table->timestamps(); // 添加這行 }); }
重復(fù)make:migration
確切來說,這個(gè)也不算是坑,因?yàn)檫@個(gè)操作本身就是只需執(zhí)行一次
但對(duì)于新手來說,可能無意間就重復(fù)執(zhí)行多次,而 make:migration 時(shí)是不會(huì)報(bào)錯(cuò)的;
而在執(zhí)行遷移時(shí)問題就來了:
解決辦法就是刪除或修改同一 table 的 schema 名稱。
5.php artisan db:seed 表名變復(fù)數(shù) 單數(shù)
這可能和 Chinglish 有關(guān),老外習(xí)慣把表名寫為復(fù)數(shù),所以干脆默認(rèn)Model 對(duì)應(yīng)的表名是這個(gè)英文單詞的復(fù)數(shù)形式
因此,要在 model 里重寫 $table 屬性,如:
protected $table=’student’;
以上是“l(fā)aravel報(bào)錯(cuò)42S01 420004 42S22]等問題怎么辦”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。