FK в таблице не работает во время миграции - PullRequest
0 голосов
/ 02 июля 2018

Когда я создаю миграцию для таблицы в то время, возникает проблема с ее следующей ошибкой.

Подсветка \ База данных \ QueryException: SQLSTATE [HY000]: общие ошибка: 1005 Невозможно создать таблицу yourwebs_veridocedu. #sql-2c46_8e (errno: 150 «Ограничение внешнего ключа сформировано неправильно») (SQL: изменить таблицу user_role_mappings добавить ограничение user_role_mappings_user_id_foreign внешний ключ (user_id) ссылки users (id) на каскад удаления)

Миграция для таблицы пользовательских ролей:

public function up()
    {
        Schema::create('user_role_mappings', function (Blueprint $table) {
            $table->increments('id');

            $table->integer('user_id');
            $table->integer('group_id');
            $table->integer('roleid');
            $table->integer('status');
            $table->integer('createdby');
            $table->integer('modifiedby');
            $table->string('publicguid');
            $table->string('privateguid');
            $table->timestamps();

            $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
            $table->foreign('group_id')->references('id')->on('groups')->onDelete('cascade');
        });
    }

Миграция для ролевого стола:

public function up()
{
    Schema::create('userroles', function (Blueprint $table) {
        $table->increments('id');
        $table->string('rolename');
         $table->integer('status')->default(1);
        $table->integer('createdby')->default(1);
        $table->integer('modifiedby')->default(1);
        $table->string('publicguid');
        $table->string('privateguid');
        $table->timestamps(); 

    });
}

Пользовательская миграция:

    <?php

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

class CreateUsersTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('users', function (Blueprint $table) {
            $table->engine = 'InnoDB';
            $table->increments('id');


            $table->string('name');
            $table->string('email',150)->unique();
            $table->string('password');
            $table->integer('roleid')->unsigned();
            $table->rememberToken();

            /*Common Fields*/
            $table->integer('status');
            $table->integer('createdby');
            $table->integer('modifiedby');
            $table->string('publicguid');
            $table->string('privateguid');
            $table->timestamps();

           /*From other table */
            $table->foreign('roleid') ->references('id')->on('userroles')->onDelete('cascade');

        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */

    public function down()
    {
        Schema::dropIfExists('users');
    }
}

FK в таблице не работает, которые мигрируют.

Ответы [ 3 ]

0 голосов
/ 02 июля 2018

Попробуйте что-нибудь, как указано ниже.

$table->integer('user_id')->unsigned()->index();
$table->integer('group_id')->unsigned()->index();
0 голосов
/ 02 июля 2018

Обе таблицы должны использовать механизм InnoDB, а типы столбцов должны совпадать:

Schema::create('user_role_mappings', function (Blueprint $table) {
    $table->engine = 'InnoDB';
    $table->unsignedInteger('user_id');
    $table->unsignedInteger('group_id');
});
0 голосов
/ 02 июля 2018

increments столбцы не подписаны, столбцы внешнего ключа должны иметь одинаковую подпись. Поэтому вы должны изменить столбцы следующим образом:

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