gpt4 book ai didi

php - Laravel:无法在生产中添加外键约束

转载 作者:可可西里 更新时间:2023-11-01 07:38:15 29 4
gpt4 key购买 nike

我正在开发一个 Laravel 项目并创建了模型,当我在我的计算机(我正在开发的计算机上)上运行迁移时,一切正常,甚至是表之间的关系。当我将代码上传到生产服务器并在创建关系的位置运行迁移时出现问题。

在下面的代码中,我留下了一些注释行,这些行是我为解决问题而尝试做的事情,但没有任何效果。

  • 我尝试将两个表的表引擎都设置为 innoDB,但没有成功。
  • 我试图在两个表上将 id 数据类型设置为 increments,并且 deviceTypeID 列将用作外键,我将其定义为 unsignedinteger 但它不起作用。

  • 我什至检查了两台计算机上的 PHP、Composer、Doctrine/dbal 和 mysql 版本,它们是相同的(或几乎相同)。

开发计算机:
PHP: 7.3
作曲:1.8.6
MySQL服务器:5.7.23
学说/dbal:2.9

生产服务器:
PHP: 7.3
作曲:1.9
MySQL服务器:5.7.25
学说/dbal:2.9
(它运行 Ubuntu Server 18.04)

  • 我还尝试在另一台计算机上运行该项目,看看我是否遇到同样的错误,但没有出现,一切正常。

  • 我还运行了这个查询“alter table devices add constraint devices_devicetypeid_foreign foreign key (deviceTypeID) references devicestype(id) on delete cascade"没有直接在 mysql 命令行上的所有引号并且它有效。所以问题与用户权限无关。

当它尝试在 AddRelationDevicesDeviceType 上运行代码时,它总是在生产环境中崩溃

class CreateDevicesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('devices', function (Blueprint $table) {
//$table->engine = 'innoDB'
$table->bigIncrements('id');
//$table->increments('id');
$table->unsignedBigInteger('deviceTypeID');
//$table->integer('deviceTypeID')->unsigned();
$table->timestamps();
});
}
}

class CreateDevicesTypeTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('devicesType', function (Blueprint $table) {
//$table->engine = 'innoDB'
$table->bigIncrements('id');
//$table->increments('id');
$table->string("Device Type");
$table->text("Description");
$table->timestamps();
});
}
}


class AddRelationDevicesDeviceType extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('devices', function($table) {
$table->foreign('deviceTypeID')
->references('id')->on('devicesType')
->onDelete('cascade');
});
}
}

这是错误:

Illuminate\Database\QueryException  : SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint (SQL: alter table `devices` add constraint `devices_devicetypeid_foreign` foreign key (`deviceTypeID`) references `devicestype`(`id`) on delete cascade) at /var/www/html/MYPROJECT/vendor/laravel/framework/src/Illuminate/Database/Connection.php:664
660| // If an exception occurs when attempting to run a query, we'll format the error
661| // message to include the bindings with SQL, which will make this exception a
662| // lot more helpful to the developer instead of just the databa se's errors.
663| catch (Exception $e) {
> 664| throw new QueryException(
665| $query, $this->prepareBindings($bindings), $e
666| );
667| }
668|

Exception trace:

1 Doctrine\DBAL\Driver\PDOException::("SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint") /var/www/html/MYPROJECT/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:119

2 PDOException::("SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint") /var/www/html/MYPROJECT/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117

最佳答案

我想出了解决问题的方法。

问题是当我运行第一次迁移时创建表“devicesType” MySQL 将表名更改为小写,所以它最终变成了“devicestype”,当我在上次迁移中尝试引用该表时我创建了 Laravel 找不到表的关系。

我的开发服务器不区分大小写,而我的生产服务器区分大小写。

我还将“deviceTypeID”从“unsignedBigInteger”更改为“bigInteger”,并使用“unsigned”方法指定无符号类型

如果对某人有用,这是我的新代码:

class CreateDevicesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('devices', function (Blueprint $table) {
$table->bigIncrements('id');
$table->bigInteger('deviceTypeID')->unsigned();
$table->timestamps();
});
}
}

class CreateDevicesTypeTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('devicestype', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string("Device Type");
$table->text("Description");
$table->timestamps();
});
}
}


class AddRelationDevicesDeviceType extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('devices', function($table) {
$table->foreign('deviceTypeID')
->references('id')->on('devicestype')
->onDelete('cascade');
});
}
}

关于php - Laravel:无法在生产中添加外键约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57420112/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com