以下由Laravel教學專欄為大家介紹關於laravel migrate初學的一些常見錯誤及其解決辦法,希望對大家有所幫助!
前言
最近斷斷續續開始laravel 入門學習,想整個簡單的通訊錄系統,設立了兩個表,一個branches ,一個contacts。在建立migration 檔案的時候,沒有考慮仔細,先把contacts 表建立了,contacts 表有個外鍵連接到branches 的id,結果執行migrate 指令的時候,出現以下錯誤:
[Illuminate\Database\QueryException] SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint (SQL: alter table `contacts` add constraint `contac ts_branch_id_foreign` foreign key (`branch_id`) references `branches` (`id`) on delete cascade) [PDOException] SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint
初步懷疑是表格建立先後不規範造成,於是,手動修改branches 的migration 檔案名稱上的日期,再執行
php artisan migrate:reset
出現如下錯誤:
[ErrorException] include(/Users/Ade/www/laravel_phonebook5.2): failed to open stream: Operation now in progress
#failed to open stream 錯誤解決
光看錯誤提示不是很理解,我們查看laravel 的log 檔案
more storage/logs/laravel.log
找到出現ERROR 的那段話:
[2016-09-29 18:05:35] local.ERROR: exception 'ErrorException' with message 'include(/Users/Ade/www/laravel_phonebook5.2): failed to open stream: Operation now in progress' in /Users/Ade/www/laravel_phonebook5.2/vendor/composer/ClassLoader.php:412 Stack trace: #0 /Users/Ade/www/laravel_phonebook5.2/vendor/composer/ClassLoader.php(412): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'include(/Users/...', '/Users/Ade/www/...', 412, Array) #1 /Users/Ade/www/laravel_phonebook5.2/vendor/composer/ClassLoader.php(412): Composer\Autoload\includeFile() #2 /Users/Ade/www/laravel_phonebook5.2/vendor/composer/ClassLoader.php(301): Composer\Autoload\includeFile('/Users/Ade/www/...') #3 [internal function]: Composer\Autoload\ClassLoader->loadClass('CreateBranchesT...') #4 /Users/Ade/www/laravel_phonebook5.2/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(335): spl_autoload_call('CreateBranchesT...') #5 /Users/Ade/www/laravel_phonebook5.2/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(227): Illuminate\Database\Migrations\Migrator->resolve('2016_09_12_1728...') #6 /Users/Ade/www/laravel_phonebook5.2/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(206): Illuminate\Database\Migrations\Migrator->runDown(Object(stdClass), false)
錯誤出現在ClassLoader.php 檔案的412 行
查看改行程式碼,發現是一個呼叫檔案的語句:
而這個文件,在log 文件中已經指出,即resolve('2016_09_12_1728...')
。 log 提示的這個名稱,就是我修改的 branch 的 migration 檔案名稱。
我們再搜搜正常的migration 檔案會在哪些地方出現:
mdfind 2014_10_12_000000_create_users_table.php|grep phonebook
可見,正常的有3 個地方出現,修改過的只有1 個地方出現。
編輯這兩個未出現的檔案
#調整autoload_static.php 檔案
#發現vendor/composer/autoload_static.php 檔案中,和branches 相關的語句如下:
'CreateBranchesTable' => __DIR__ .,
參考正常的migration 檔案名稱的設定情況,補充為'CreateBranchesTable' => __DIR__ . '/../..' . '/database/migrations/2016_09_12_172822_create_branches_table.php',
#調整autoload_classmap.php 檔案
我們發現autoload_classmap.php 檔案中,有關branches 的路徑名稱還是修改前的路徑:
'CreateBranchesTable' => $baseDir . '/database/migrations/2016_09_29_172822_create_branches_table.php',
'CreateBranchesTable' => $baseDir . '/database/migrations/2016_09_12_172822_create_branches_table.php',
php artisan migrate:reset
contacts 回滾失敗的分析
php artisan migrate
[Illuminate\Database\QueryException] SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint (SQL: alter table `contacts` add constraint `contacts_branch_id_foreign` foreign key (`branch_id`) references `br anches` (`id`) on update cascade) [PDOException] SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint
找到问题原因后,我们就清空数据库,修改 contacts 的 migration 文件,调整 branch_id 为:
$table->integer('branch_id')->unsigned()->comment('机构ID');
再重新执行 migrate 命令,成功!
相关推荐:最新的五个Laravel视频教程
以上是匯總laravel migrate的一些常見錯誤的詳細內容。更多資訊請關注PHP中文網其他相關文章!