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 abd94b8cfcca34d54ec211ef58ba973a23eb6fa2..4eaf96d13e2f6508977bf83c58accbf25850e9f3 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(); }); } diff --git a/lang/es.json b/lang/es.json index 9a813782bfff28b8a6b6cebdd8f216beb3617c33..ea7032360a97cdb9b04565d5b57585ebe818ff13 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