college-courses/database/migrations/2023_05_28_042823_update_users_table.php

32 lines
696 B
PHP

<?php
use App\Models\Role;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
//
Schema::table('users', function (Blueprint $table) {
$table->foreignIdFor(Role::class, 'role_id')->default('1')->after('password');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
Schema::table('users', function (Blueprint $table) {
$table->dropForeignIdFor(Role::class, 'role_id');
});
}
};