id(); $table->string('firstname'); $table->string('lastname'); $table->string('email')->unique(); $table->string('uuid')->unique(); $table->string('profile'); $table->string('status'); $table->string('is_admin'); $table->string('password'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); } };