Update migration -> change default of in_progress to false

This commit is contained in:
Kelvin Zhang 2015-10-27 16:35:04 +00:00
parent 0970734648
commit 628b6f5f86

View file

@ -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();
});
}