id(); $table->string('name'); $table->string('lastname'); $table->string('email')->unique(); $table->string('password'); $table->string('phone')->nullable(); $table->integer('validate'); $table->integer('role')->nullable(); $table->dateTime('verified_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); } };