Laravel 7.0 MySQL SQLSTATE [HY000]: общая ошибка: 1824 Не удалось открыть ссылочную таблицу - PullRequest
0 голосов
/ 23 апреля 2020

Информация о системе:

  • ОС: Ubuntu 19.10
  • Laravel Версия: 7.0
  • PHP Версия: 7.3.11-0ubuntu0.19.10. 4
  • MySQL Версия: mysql Вер. 8.0.19-0ubuntu0.19.10.3 для Linux на x86_64 ((Ubuntu))

Я строю небольшой Laravel приложение и у меня проблема с MySQL и отношениями. Когда я пытаюсь запустить миграцию, я получаю следующую ошибку:

SQLSTATE[HY000]: General error: 1824 Failed to open the referenced table 'customers_table' (SQL: alter table `customer_contacts` add constraint `customer_contacts_customer_id_foreign` foreign key (`customer_id`) references `customers_table` (`id`))

И вот эти два файла миграции, о которых идет речь.

customer таблица и миграция:

<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class CreateCustomersTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('customers', function (Blueprint $table) {
            $table->id();

            $table->string('company_name', 50);
            $table->string('phone_number', 20)->nullable();
            $table->string('fax_number', 20)->nullable();
            $table->string('address_line_1', 75)->nullable();
            $table->string('address_line_2', 75)->nullable();
            $table->string('city', 75)->nullable();
            $table->string('state', 30)->nullable();
            $table->string('zip', 11)->nullable();
            $table->string('industry', 100)->nullable();
            $table->text('notes')->nullable();

            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('customers');
    }
}

И таблица customer_contacts и миграция:

<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class CreateCustomerContactsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('customer_contacts', function (Blueprint $table) {
            $table->id();
            $table->foreignId('customer_id')->constrained('customers_table');
            $table->string('name', 50);
            $table->string('title', 50);
            $table->string('project', 50);
            $table->string('email', 50);
            $table->string('mobile_phone', 20);
            $table->string('work_phone', 20);
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('customer_contacts');
    }
}

И это соответствующий раздел из моего database.php файла:

...

'mysql' => [
            'driver' => 'mysql',
            'url' => env('DATABASE_URL'),
            'host' => env('DB_HOST', '127.0.0.1'),
            'port' => env('DB_PORT', '3306'),
            'database' => env('DB_DATABASE', 'forge'),
            'username' => env('DB_USERNAME', 'forge'),
            'password' => env('DB_PASSWORD', ''),
            'unix_socket' => env('DB_SOCKET', ''),
            'charset' => 'utf8mb4',
            'collation' => 'utf8mb4_unicode_ci',
            'prefix' => '',
            'prefix_indexes' => true,
            'strict' => true,
            'engine' => 'InnoDB',
            'options' => extension_loaded('pdo_mysql') ? array_filter([
                PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
            ]) : [],
        ],

...

Я попытался изменить свою базу данных на SQLite, чтобы увидеть, получаю ли я ту же ошибку, и нет, только MySQL создает эту ошибку.

Ответы [ 2 ]

0 голосов
/ 24 апреля 2020

Ответ опубликован здесь: { ссылка }.

Использование

$table->foreignId('customer_id')->constrained('customers')

Вместо

$table->foreignId('customer_id')->constrained('customers_table');

0 голосов
/ 23 апреля 2020

Использование

$table->foreignId('customer_id')->constrained('customers')

Вместо

$table->foreignId('customer_id')->constrained('customers_table');
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...