unsignedBigInteger("id")->primary(); $table->string("kategoriaNev"); }); Schema::create("forgalom", function(Blueprint $table){ $table->unsignedBigInteger("id"); $table->string("termek"); $table->string("vevo"); $table->foreignId("kategoriaId")->references("id")->on("kategoria"); $table->string("egyseg"); $table->integer("nettoar"); $table->integer("mennyiseg"); $table->boolean("kiadva"); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists("forgalom"); Schema::dropIfExists("kategoria"); } };