mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-02-07 06:16:43 +01:00
Update migration -> change default of in_progress to false
This commit is contained in:
parent
0970734648
commit
628b6f5f86
1 changed files with 1 additions and 1 deletions
|
@ -32,8 +32,8 @@ class UpdateTrackFilesWithCache extends Migration
|
||||||
{
|
{
|
||||||
Schema::table('track_files', function (Blueprint $table) {
|
Schema::table('track_files', function (Blueprint $table) {
|
||||||
$table->boolean('is_cacheable')->default(false);
|
$table->boolean('is_cacheable')->default(false);
|
||||||
|
$table->boolean('in_progress')->default(false);
|
||||||
$table->dateTime('expiration')->nullable();
|
$table->dateTime('expiration')->nullable();
|
||||||
$table->boolean('in_progress')->nullable();
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue