欢迎来到代码驿站!

PHP代码

当前位置:首页 > 软件编程 > PHP代码

关于laravel 数据库迁移中integer类型是无法指定长度的问题

时间:2021-08-26 08:12:47|栏目:PHP代码|点击:

laravel数据库迁移中integer类型是无法指定长度的,很多小伙伴对integer类型传递第二个参数后会发现迁移报以下错误

Syntax error or access violation: 1075 Incorrect table definition; there can be only one auto column and it must be defined as a key

查看了sql代码后发现通过integer指定长度创建的子段自动添加了auto increament 以及 primary key 属性

int not null auto_increment primary key

查看源代码后发现integer方法的第二个参数并不是指定长度,而是是否设置auto increment,所以integer方法无法指定子段长度,默认为11。

 public function integer($column, $autoIncrement = false, $unsigned = false)
  {
  return $this->addColumn('integer', $column, compact('autoIncrement', 'unsigned'));
 }

上一篇:获取PHP警告错误信息的解决方法

栏    目:PHP代码

下一篇:PHP异常处理Exception类

本文标题:关于laravel 数据库迁移中integer类型是无法指定长度的问题

本文地址:http://www.codeinn.net/misctech/170010.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有