Answers for "foreign migrations laravel"

PHP
2

laravel migration integer

$table->integer('votes');
Posted by: Guest on March-22-2021
5

foreign key laravel migration

$table->foreign('column_name')->references('id')->on('table_name')->onDelete('cascade');
Posted by: Guest on February-05-2021
0

laravel 8 foreign key migration

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');
});
Posted by: Guest on December-16-2020

Code answers related to "foreign migrations laravel"

Browse Popular Code Answers by Language