id(); $table->string("title", 255); $table->longText("content"); $table->unsignedBigInteger("categorie_id"); $table->unsignedBigInteger("user_id"); $table->timestamps(); $table->foreign("categorie_id")->references("id")->on("categories"); $table->foreign("user_id")->references("id")->on("users"); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('infos'); } };