How to Add Foreign Key in Laravel Migration? (ok)
https://www.itsolutionstuff.com/post/how-to-add-foreign-key-in-laravel-migrationexample.html
Ví dụ 1:
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePostsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up() {
Schema::create('posts', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->text('body');
$table->timestamps();
});
Schema::create('comments', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('user_id');
$table->unsignedBigInteger('post_id');
$table->text('comment');
$table->timestamps();
$table->foreign('user_id')->references('id')->on('users');
$table->foreign('post_id')->references('id')->on('posts');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down() {
Schema::dropIfExists('comments');
Schema::dropIfExists('posts');
}
}
imHow to Add Foreign Key in Laravel Migration?

PreviousLaravel Migration - How to Add New Column in Existing Table ? (ok)NextHow to Add Index in Laravel Migration? (ok)
Last updated