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