“Utwórz migrację laravel zagranicznych kluczy” Kod odpowiedzi

Zrób klucz do migracji za pomocą Laravel 8

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

Laravel zagraniczny klucz

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

    $table->foreign('user_id')->references('id')->on('users');
});
OR
Schema::table('posts', function (Blueprint $table) {
    $table->foreignId('user_id')->constrained();
});
Courageous Cod

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

Laravel 8 Migracja zagranicznych kluczowych

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

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

    $table->foreign('user_id')->references('id')->on('users');
});
Combative Coyote

Migracja laravel zagranicznych kluczy

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

Laravel dodaje ograniczenia obcego klucza

$table->foreignId('user_id')
      ->constrained("users") <- // You don't need to specify table if it matched laravel naming conventions.
      ->onUpdate('cascade')
      ->onDelete('cascade');
kelraf

Odpowiedzi podobne do “Utwórz migrację laravel zagranicznych kluczy”

Pytania podobne do “Utwórz migrację laravel zagranicznych kluczy”

Więcej pokrewnych odpowiedzi na “Utwórz migrację laravel zagranicznych kluczy” w PHP

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

Przeglądaj inne języki kodu