Skip to content

Commit

Permalink
Merge pull request #4467 from Roardom/fix-earning-name
Browse files Browse the repository at this point in the history
  • Loading branch information
HDVinnie authored Feb 13, 2025
2 parents bc25ffa + 3c3d69a commit 6a40b85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions database/migrations/2024_12_26_031647_bon_earnings_v2.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public function up(): void
'multiplier' => 0.75,
'operation' => 'append',
'name' => 'Huge Torrent',
'description' => 'Torrent Size > 100 GiB',
'description' => 'Torrent Size 100 GiB',
],
[
'id' => 5,
Expand All @@ -96,7 +96,7 @@ public function up(): void
'multiplier' => 0.5,
'operation' => 'append',
'name' => 'Large Torrent',
'description' => 'Torrent Size ≥ 25 GiB but < 50 GiB',
'description' => 'Torrent Size ≥ 25 GiB but < 100 GiB',
],
[
'id' => 6,
Expand Down
4 changes: 2 additions & 2 deletions database/seeders/BonEarningTableSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function run(): void
'multiplier' => 0.75,
'operation' => 'append',
'name' => 'Huge Torrent',
'description' => 'Torrent Size > 100 GiB',
'description' => 'Torrent Size 100 GiB',
],
[
'id' => 5,
Expand All @@ -67,7 +67,7 @@ public function run(): void
'multiplier' => 0.5,
'operation' => 'append',
'name' => 'Large Torrent',
'description' => 'Torrent Size ≥ 25 GiB but < 50 GiB',
'description' => 'Torrent Size ≥ 25 GiB but < 100 GiB',
],
[
'id' => 6,
Expand Down

0 comments on commit 6a40b85

Please sign in to comment.