usermanagement/database/migrations/2024_08_27_071158_update_users_table.php

33 lines
834 B
PHP
Raw Normal View History

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use Modules\Lpj\Models\Branch;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('users', function (Blueprint $table) {
$table->string('nik')->nullable()->after('email');
$table->foreignIdFor(Branch::class)->nullable()->after('nik')->constrained('branches');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('nik');
$table->dropForeign(['branch_id']);
$table->dropColumn('branch_id');
});
}
};