初学laravel migrate常见错误解决

断断续续开始 laravel 入门学习,想整个简单的通讯录系统,设立了两个表,一个 branches ,一个 contacts。在创建
migration 文件的时候,没有考虑仔细,先把 contacts 表建立了,contacts 表有个外键连接到 branches 的
id,结果执行 migrate 命令的时候,出现以下错误:


  1. [Illuminate\Database\QueryException] 
  2.  
  3. SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint (SQL: alter table `contacts` add constraint `contac 
  4.  
  5. ts_branch_id_foreign` foreign key (`branch_id`) references `branches` (`id`) on delete cascade) 
  6.  
  7. [PDOException] 
  8.  
  9. SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint  

初步怀疑是表创建先后不规范造成,于是,手动修改 branches 的 migration 文件名称上的日期,再执行


  1. php artisan migrate:reset 

出现如下错误:


  1. [ErrorException] 
  2.  
  3. include(/Users/Ade/www/laravel_phonebook5.2): failed to open stream: Operation now in progress  

failed to open stream 错误解决

光看错误提示不是很理解,我们查看 laravel 的 log 文件


  1. more storage/logs/laravel.log 

找到出现 ERROR 的那段话:


  1. [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 
  2. Stack trace: 
  3. #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) 
  4. #1 /Users/Ade/www/laravel_phonebook5.2/vendor/composer/ClassLoader.php(412): Composer\Autoload\includeFile() 
  5. #2 /Users/Ade/www/laravel_phonebook5.2/vendor/composer/ClassLoader.php(301): Composer\Autoload\includeFile('/Users/Ade/www/...') 
  6. #3 [internal function]: Composer\Autoload\ClassLoader->loadClass('CreateBranchesT...') 
  7. #4 /Users/Ade/www/laravel_phonebook5.2/vendor/laravel/framework/src/Illuminate/Database/Migrations/Migrator.php(335): spl_autoload_call('CreateBranchesT...') 
  8. #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...') 
  9. #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 文件会在哪些地方出现:


  1. mdfind 2014_10_12_000000_create_users_table.php|grep phonebook 

可见,正常的有 3 个地方出现,修改过的只有 1 个地方出现。

编辑这两个未出现的文件

调整 autoload_static.php 文件

发现 vendor/composer/autoload_static.php 文件中,和 branches 相关的语句如下:


  1. 'CreateBranchesTable' => __DIR__ ., 

想来应该是改名的时候,PHP Storm自动帮我把这个文件里面有关 branches 文件路径全部给删掉了。加回去就好了。

参照正常的 migration 文件名的配置情况,补充为


  1. 'CreateBranchesTable' => __DIR__ . '/../..' . '/database/migrations/2016_09_12_172822_create_branches_table.php', 

调整 autoload_classmap.php 文件

我们发现 autoload_classmap.php 文件中,有关 branches 的路径名还是修改前的路径:


  1. 'CreateBranchesTable' => $baseDir . '/database/migrations/2016_09_29_172822_create_branches_table.php', 

将其修改为


  1. 'CreateBranchesTable' => $baseDir . '/database/migrations/2016_09_12_172822_create_branches_table.php', 

再执行 migrate 命令


  1. php artisan migrate:reset 

OK,刚才的错误没了,不过我们又发现 contacts 表没有回滚,

contacts 回滚失败的分析

通过 sequel pro 连上数据库查看

发现 contacts 表果然存在,但是 migration 表中已没有内容,想必再执行前面 migrate
命令的时候出现错误,contacts 的执行记录并没有写入 migrations 表中。我们可以重新执行 migrate
命令试试看。首先手动删除这两张表,也就是清空数据库,然后执行:


  1. php artisan migrate 

我们先忽视创建 contacts 表出现的错误,刷新 sequel pro 查看一下:

果然,migration 表中没有 contacts 的创建记录,这也就难怪执行 reset 的时候,会没有 contacts 的回滚操作了。

contacts 无法创建 branch_id 外键的解决

现在,我们已经执行了 migrate 命令,我们重新来看看这个最早出现的错误:


  1. [Illuminate\Database\QueryException] 
  2.  
  3. 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 
  4.  
  5. anches` (`id`) on update cascade) 
  6.  
  7. [PDOException] 
  8.  
  9. SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint  

冷静下来分析一下,既然提示的是 SQL 错误,我们不妨在 sequel pro 中手工执行一下这条 SQL 语句。

果然,执行返回错误。

仔细查看语句并没有错误,一想,应该是 branch_id 类型声明和 branches 表中的 ID 类型不一致造成的吧。查看 contacts 的结构,发现 Unsigned 没有打钩,勾选后再执行增加外键的 SQL 语句,成功。

找到问题原因后,我们就清空数据库,修改 contacts 的 migration 文件,调整 branch_id 为:


  1. $table->integer('branch_id')->unsigned()->comment('机构ID'); 

再重新执行 migrate 命令,成功!

作者:ingood

来源:51CTO

时间: 2024-10-15 20:20:00

初学laravel migrate常见错误解决的相关文章

WCF分布式开发常见错误解决(12)

WCF分布式开发常见错误解决(12):The server was unable to process the request,服务无法处理请求 进行WCF编程过程中会遇到这样的错误:服务无法处理的请求由于内部错误. 具体信息如下: The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeEx

WCF分布式开发常见错误解决(11)

WCF分布式开发常见错误解决(11):There is already a listener on IP endpoint ,IP 终结点 已经存在侦听器 进行WCF服务终结点配置的过程中,当你配置服务终结点端口,启动服务程序的时候会遇到如下错误,服务无法启动,1.错误信息如下: IP终结点(端口) 0.0.0.0:8002已经存在一个侦听器,请确保程序中没有多次使用一个终结点,或别的程序没有监听此终结点(端口) There is already a listener on IP endpoin

WCF分布式开发常见错误解决(10)

WCF分布式开发常见错误解决(10):套接字连接中断,The socket connection was aborted (使用Windows Service作为宿主的时候也会出现这样的情况,搜索的) 我们这里是自定义托管宿主,在进行WCF编程开发过程时,使用NetTcpBinding绑定协议,作为通讯协议,可能会引发这样的异常,导致数据如法传输.套接字连接中断,可能是由于消息处理错误,或者远程宿主接受超时引起,或者是底层网络资源问题导致,本地套接字时间是'00:00:59.7656250'.具

WCF分布式开发常见错误解决(9)

WCF分布式开发常见错误解决(9):无终结点监听,There was no endpoint listening at 当我们添加服务元数据地址,查找元数据服务,进行反序列操作.会出现这样的错误:无终结点监听Metadata contains a reference that cannot be resolved: 'net.tcp://localhost:9004/mex'. There was no endpoint listening at net.tcp://localhost:9004

WCF分布式开发常见错误解决(7)

WCF分布式开发常见错误解决(7):System.InvalidOperationException,Cannot have two operations in the same contract 我们启动服务宿主程序的时候,有可能出现如下的无效操作异常,信息如下: Cannot have two operations in the same contract with the same name, methods SayHello and SayHello in type WCFService

WCF分布式开发常见错误解决(6)

WCF分布式开发常见错误解决(6)Service 'WcfServiceApp.WCFService' has zero application 调试WCF服务应用程序的时候,会出现如下错误: "/"应用程序中的服务器错误.Service 'WcfServiceApp.WCFService' has zero application (non-infrastructure) endpoints. This might be because no configuration file w

WCF分布式开发常见错误解决(5)

WCF分布式开发常见错误解决(5)Could not find a base address that matches scheme WCF分布式应用开发,托管宿主配置终结点错误:找不到匹配式样http的基地址, Could not find a base address that matches scheme http for the endpoint with binding MetadataExchangeHttpBinding. Registered base address schem

WCF分布式开发常见错误解决(4)

WCF分布式开发常见错误解决(4):The type or namespace name 'DataContract' could not be found DataContract找不到 我们进行WCF项目开发,自己定义数据契约的时候会出现这样的错误: DataContract.DataMember.DataMemberAttribute找不到,如图: The type or namespace name 'DataContract' could not be found (are you m

WCF分布式开发常见错误解决(3):客户端调用服务出错

我们手动编码使用客户端调用WCF服务的时候会出现服务不支持 .Net Framing的错误 , 具体信息如下: You have tried to create a channel to a service that does not support .Net Framing. It is possible that you are encountering an HTTP endpoint. 开发常见错误解决(3):客户端调用服务出错-"> 解决办法: 检查宿主进程里,WCF服务的终结点