From cfb0ab0298c214b28bb1026d3235742baa1ebc57 Mon Sep 17 00:00:00 2001 From: josh Date: Thu, 2 Apr 2026 10:31:12 +1000 Subject: [PATCH] Migration Fix --- ..._04_02_001334_update_skywest_australia.php | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 database/migrations/2026_04_02_001334_update_skywest_australia.php diff --git a/database/migrations/2026_04_02_001334_update_skywest_australia.php b/database/migrations/2026_04_02_001334_update_skywest_australia.php new file mode 100644 index 0000000..959f7aa --- /dev/null +++ b/database/migrations/2026_04_02_001334_update_skywest_australia.php @@ -0,0 +1,42 @@ +where('internal_name', 'virgin-australia-regional') + ->update(['logo' => 'VA.png']); + + + DB::table('airlines')->insert([ + 'IATA_code' => 'XR', + 'ICAO_code' => 'OZW', + 'name' => 'Skywest', + 'internal_name' => 'skywest', + 'country_code' => 'AU', + 'country_name' => 'Australia', + 'active' => false, + 'logo' => 'XR_1.png', + ]); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + DB::table('airlines')->where('internal_name', 'skywest')->delete(); + + DB::table('airlines') + ->where('internal_name', 'virgin-australia-regional') + ->update(['logo' => 'XR.png']); + } +};