-
-
Notifications
You must be signed in to change notification settings - Fork 203
Add speedtest result bytes to results table #2150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
alexjustesen
merged 23 commits into
alexjustesen:2146-feature-implement-a-data-cap
from
ilteoood:feat/moved_bytes
Apr 21, 2025
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
8f0f3e8
feat: migration
ilteoood a80cb0e
feat: insert data in result
ilteoood e9d61a2
feat: result resource
ilteoood 12fced8
chore: store new data
ilteoood c59cd6b
fix: ResultResource
ilteoood d439315
chore: result resource
ilteoood eed05dd
feat: data format
ilteoood a9bade9
fix: wiki
ilteoood 872adda
feat: chart
ilteoood ebb7cbf
fix: uploaded chart
ilteoood df1fd5c
fix: build point data
ilteoood fd66605
fix: lint
ilteoood c5927ea
fix: migration script
ilteoood 653637f
fix: remove data attributes
ilteoood 68e186f
fix: remove _bytes columns from v0 controllers
ilteoood 56d7434
fix: removed UI elements
ilteoood cb55a57
fix: reuslt exporter column state
ilteoood 305eabe
fix: build point data using direct data reference
ilteoood d6d4d8e
Merge branch 'main' into feat/moved_bytes
ilteoood 1706f53
Merge branch '2146-feature-implement-a-data-cap' into feat/moved_bytes
ilteoood 8e8ec4d
chore: revert notifications
ilteoood 58906a5
chore: removed byteToHumans method
ilteoood 2ba840a
chore: rollback average
ilteoood File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
database/migrations/2025_04_16_000050_update_results_table.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| <?php | ||
|
|
||
| use Illuminate\Database\Migrations\Migration; | ||
| use Illuminate\Database\Schema\Blueprint; | ||
| use Illuminate\Support\Facades\Schema; | ||
|
|
||
| return new class extends Migration | ||
| { | ||
| /** | ||
| * Run the migrations. | ||
| */ | ||
| public function up(): void | ||
| { | ||
| Schema::table('results', function (Blueprint $table) { | ||
| $table->unsignedBigInteger('downloaded_bytes')->nullable()->after('download'); | ||
| $table->unsignedBigInteger('uploaded_bytes')->nullable()->after('upload'); | ||
| }); | ||
| } | ||
|
|
||
| /** | ||
| * Reverse the migrations. | ||
| */ | ||
| public function down(): void | ||
| { | ||
| // | ||
| } | ||
| }; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.