Migration Fix

This commit is contained in:
2026-04-01 16:02:12 +10:00
parent 5760f8e576
commit 70f7943c0f
3 changed files with 1489 additions and 28 deletions
@@ -11,7 +11,10 @@ return new class extends Migration
*/
public function up(): void
{
//
DB::table('airlines')
->where('IATA_code', 'CM')
->where('ICAO_code', 'CMP')
->update(['logo' => 'CM_1.png']);
}
/**
@@ -19,6 +22,9 @@ return new class extends Migration
*/
public function down(): void
{
//
DB::table('airlines')
->where('IATA_code', 'CM')
->where('ICAO_code', 'CMP')
->update(['logo' => 'CM.png']);
}
};