Answers for "laravel 8 migration code"

PHP
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
3

create migration with model laravel 8

php artisan make:model ModelName --migration
Posted by: Guest on August-16-2021
2

laravel make model with migration 5.8

php artisan make:model Settings --migration
Posted by: Guest on December-09-2020

Code answers related to "laravel 8 migration code"

Browse Popular Code Answers by Language