• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    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__ ., 

    想来应该是改名的时候,PHP Storm自动帮我把这个文件里面有关 branches 文件路径全部给删掉了。加回去就好了。
    参照正常的 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', 

    再执行 migrate 命令

    php artisan migrate:reset 

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

    contacts 回滚失败的分析

    通过 sequel pro 连上数据库查看

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

    php artisan migrate 

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

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

    contacts 无法创建 branch_id 外键的解决

    现在,我们已经执行了 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 

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

    果然,执行返回错误。

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

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

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

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

    总结

    以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对脚本之家的支持。

    您可能感兴趣的文章:
    • Laravel5.1自定义500错误页面示例
    • Laravel框架基于中间件实现禁止未登录用户访问页面功能示例
    • laravel 框架配置404等异常页面
    • Laravel 5.4重新登录实现跳转到登录前页面的原理和方法
    • Laravel框架FormRequest中重写错误处理的方法
    • Laravel中错误与异常处理的用法示例
    • laravel 5异常错误:FatalErrorException in Handler.php line 38的解决
    • Laravel实现自定义错误输出内容的方法
    • Laravel中常见的错误与解决方法小结
    • Laravel 5.3 学习笔记之 错误&日志
    • Laravel5框架自定义错误页面配置操作示例
    上一篇:Laravel学习基础之migrate的使用教程
    下一篇:Laravel 5使用Laravel Excel实现Excel/CSV文件导入导出的功能详解
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯

    时间:9:00-21:00 (节假日不休)

    地址:江苏信息产业基地11号楼四层

    《增值电信业务经营许可证》 苏B2-20120278

    laravel migrate初学常见错误的解决方法 laravel,migrate,初学,常见,