From 628b6f5f86f66ca73418532df94d964d43375815 Mon Sep 17 00:00:00 2001 From: Kelvin Zhang Date: Tue, 27 Oct 2015 16:35:04 +0000 Subject: [PATCH] Update migration -> change default of in_progress to false --- .../2015_10_26_192855_update_track_files_with_cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }); }