id(); $table->string('name'); $table->string('nip')->unique(); $table->string('password'); $table->enum('role', ['admin', 'worker', 'patient'])->default('patient'); $table->boolean('is_active')->default(true); $table->rememberToken(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); } };