Commit 3dcd0944 authored by Alfonso Rafael Solis Rangel's avatar Alfonso Rafael Solis Rangel
Browse files

Merge branch 'correcciones' into 'main'

Correcciones

See merge request !6
parents dd1487c2 1e12a056
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -13,11 +13,11 @@ public function up(): void
    {
        Schema::create('subgrupos', function (Blueprint $table) {
            $table->id();
            $table->unsingendBigInterger('grupo_id')->nullable();
            $table->unsingendBigInterger('subgrupo_id')->nullable();
            $table->unsignedBigInteger('grupo_id')->nullable();
            $table->unsignedBigInteger('subgrupo_id')->nullable();

            $table->foreign('grupo_id')->references('id')->on('grupos')->nullable();
            $table->foreign('subgrupo_id')->references('id')->on('subgrupo')->nullable();
            $table->foreign('subgrupo_id')->references('id')->on('subgrupos')->nullable();
        });
    }

+2 −1
Original line number Diff line number Diff line
@@ -362,5 +362,6 @@
    "You may delete any of your existing tokens if they are no longer needed.": "Puede eliminar cualquiera de sus tokens existentes si ya no los necesita.",
    "You may not delete your personal team.": "No se puede borrar su equipo personal.",
    "You may not leave a team that you created.": "No se puede abandonar un equipo que usted creó.",
    "Your email address is unverified.": "Su dirección de correo electrónico no está verificada."
    "Your email address is unverified.": "Su dirección de correo electrónico no está verificada.",
    "Username": "Usuario"
}
 No newline at end of file