From acd5da56ce4a8a4a4125865951f17f174f698523 Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 7 Jul 2017 22:41:02 +0200 Subject: [PATCH] Change flight number to integer --- app/Models/Flight.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Flight.php b/app/Models/Flight.php index 3bd643a8..d0b5d55f 100644 --- a/app/Models/Flight.php +++ b/app/Models/Flight.php @@ -41,7 +41,7 @@ class Flight extends Model */ protected $casts = [ - 'flight_number' => 'string', + 'flight_number' => 'integer', 'route_code' => 'string', 'route_leg' => 'string', 'route' => 'string',