uuid('DaftarID')->primary(); $table->string('NamaPerusahaan'); $table->string('Email')->unique(); $table->string('Password'); $table->string('Status')->default('Active'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('signups'); } };