id(); $table->string('nip'); $table->string('nama_depan'); $table->string('nama_belakang'); $table->string('nama_gelar'); $table->string('ettd'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); } };