Migration Fix

This commit is contained in:
2026-04-02 09:37:34 +10:00
parent 2c51a10bb0
commit fc9e67ad2b
2 changed files with 15 additions and 2 deletions
@@ -41,9 +41,11 @@ return new class extends Migration
public function down(): void
{
DB::table('airlines')->where('internal_name', 'bonza')->delete();
DB::table('airlines')
->where('IATA_code', 'AB')
->update(['logo' => 'AB.png']);
DB::table('airlines')
->where('IATA_code', 'AB')
->where('ICAO_code', 'BER')