From 931259bdde3e312b3f69036c1b40496e2a98d64b Mon Sep 17 00:00:00 2001 From: Alfonso Rafael Solis Rangel Date: Tue, 4 Jun 2024 09:28:46 -0600 Subject: [PATCH 1/2] =?UTF-8?q?Se=20a=C3=B1adio=20la=20traducci=C3=B3n=20d?= =?UTF-8?q?e=20username?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lang/es.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lang/es.json b/lang/es.json index 9a81378..ea70323 100644 --- a/lang/es.json +++ b/lang/es.json @@ -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 -- GitLab From 1e12a0566b9f9b8af99b9b78fc33ee383e4bfff8 Mon Sep 17 00:00:00 2001 From: Alfonso Rafael Solis Rangel Date: Tue, 4 Jun 2024 09:29:01 -0600 Subject: [PATCH 2/2] Correcciones en el metodo de la llave foranea --- .../migrations/2024_06_03_194040_create_subgrupos_table.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/database/migrations/2024_06_03_194040_create_subgrupos_table.php b/database/migrations/2024_06_03_194040_create_subgrupos_table.php index abd94b8..4eaf96d 100644 --- a/database/migrations/2024_06_03_194040_create_subgrupos_table.php +++ b/database/migrations/2024_06_03_194040_create_subgrupos_table.php @@ -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(); }); } -- GitLab