feat: add all database migrations
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user