id(); $table->string('flight_number'); $table->foreignId('airline_id')->constrained()->cascadeOnDelete(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('flights'); } };