Answers for "how begin primary key from 1000 laravel migration"

PHP
4

laravel migration with primary key

$table->string('code', 30)->primary();
Posted by: Guest on May-24-2021
1

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 "how begin primary key from 1000 laravel migration"

Browse Popular Code Answers by Language