id(); $table->string('uuid'); $table->string('type'); $table->string('email')->unique(); $table->boolean('verified')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('waitlists'); } };