feat: add all database migrations

This commit is contained in:
2026-04-03 04:02:11 +07:00
parent b7b5019827
commit c9efe30584
14 changed files with 349 additions and 0 deletions
@@ -15,6 +15,12 @@ return new class extends Migration
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->string('phone')->nullable();
$table->text('address')->nullable();
$table->unsignedBigInteger('division_id')->nullable();
$table->enum('status', ['aktif', 'nonaktif'])->default('aktif');
$table->text('inactive_reason')->nullable();
$table->date('last_activity_date')->nullable();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();