id(); $table->string('name')->unique(); $table->string('email')->unique()->nullable(); $table->timestamp('email_verified_at')->nullable(); $table->foreignId('grupo_de_compra_id')->nullable(); $table->string('password'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }