diff --git a/database/migrations/2015_10_26_192855_update_track_files_with_cache.php b/database/migrations/2015_10_26_192855_update_track_files_with_cache.php index c0a51e75..3bc34189 100644 --- a/database/migrations/2015_10_26_192855_update_track_files_with_cache.php +++ b/database/migrations/2015_10_26_192855_update_track_files_with_cache.php @@ -32,8 +32,8 @@ class UpdateTrackFilesWithCache extends Migration { Schema::table('track_files', function (Blueprint $table) { $table->boolean('is_cacheable')->default(false); + $table->boolean('in_progress')->default(false); $table->dateTime('expiration')->nullable(); - $table->boolean('in_progress')->nullable(); }); }