“Dodaj kolumnę klucza obce Laravel 5.8” Kod odpowiedzi

Klucz obcy w migracji laravel

$table->unsignedBigInteger('user_id');
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
Imran Developer

Dodaj kolumnę klucza obce Laravel 5.8

update your `integer('user_id')` to `bigInteger('user_id')`
public function up() { 
        Schema::create('evaluation', function (Blueprint $table) { 
            $table->increments('id'); 
            $table->bigInteger('user_id')->unsigned()->index(); 
            $table->timestamps();
            $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
        });
    }
Splendid Stoat

Utwórz migrację laravel zagranicznych kluczy

Schema::table('posts', function (Blueprint $table) {
    $table->unsignedBigInteger('user_id');

    $table->foreign('user_id')->references('id')->on('users');
});
Super Starling

Migracja laravel zagranicznych kluczy

$table->foreign('column_name')->references('id')->on('table_name')->onDelete('cascade');
Super Starling

Odpowiedzi podobne do “Dodaj kolumnę klucza obce Laravel 5.8”

Pytania podobne do “Dodaj kolumnę klucza obce Laravel 5.8”

Więcej pokrewnych odpowiedzi na “Dodaj kolumnę klucza obce Laravel 5.8” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu