“Laravel Zmień nazwę klucza obcego” Kod odpowiedzi

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 Zmień nazwę klucza obcego

//Note : Before Renaming Foreign, You Must Need To Delete Old Foreign And Assign New One
class RenameColumn extends Migration
{

    public function up()
    {
        Schema::table('holidays', function(Blueprint $table) {
            $table->dropForeign('holidays_account_id_foreign');
            $table->renameColumn('account_id ', 'engagement_id');

            $table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
        });
    }

    public function down()
    {
        Schema::table('holidays', function(Blueprint $table) {
            $table->dropForeign('holidays_engagement_id_foreign');
            $table->renameColumn('account_id ', 'engagement_id');

            $table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
        });
    }
}
Fragile Fish

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 “Laravel Zmień nazwę klucza obcego”

Pytania podobne do “Laravel Zmień nazwę klucza obcego”

Więcej pokrewnych odpowiedzi na “Laravel Zmień nazwę klucza obcego” w PHP

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

Przeglądaj inne języki kodu