id(); $table->string('nombre'); $table->foreignId('grupo_de_compra_id'); $table->string('email'); $table->string('contrasena'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('admins'); } }