id(); $table->string('name', 100); $table->unsignedBigInteger('barrio_id'); $table->foreign('barrio_id')->references('id')->on('barrios'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('pedidos'); } };