eloquent foreign key code example

Example 1: laravel foreign key

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();
});

Example 2: foreign key laravel migration

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

Example 3: laravel remove foreign key

$table->dropForeign('posts_user_id_foreign');

Example 4: create foreign key laravel migration

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

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

Example 5: laravel longblob migration

DB::statement("ALTER TABLE <table name> ADD <column name> MEDIUMBLOB");

Example 6: eloquent relationships

$roles = App\User::find(1)->roles()->orderBy('name')->get();

Tags:

Sql Example