-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: track documentation size in database & metric
- Loading branch information
1 parent
97b3141
commit e7d5518
Showing
14 changed files
with
329 additions
and
179 deletions.
There are no files selected for viewing
7 changes: 4 additions & 3 deletions
7
...58d5cee193e28ec6532bc1b1fbb98cfc3f16.json → ...56a9009e8746f8334ae32f0c900975968532.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
57 changes: 57 additions & 0 deletions
57
.sqlx/query-0da90d737b6bf2c1c1b0ab6b14c73c8363125578b1d6e30a99e70aa6bf7842c2.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
5 changes: 3 additions & 2 deletions
5
...ad28a198463534efbefcf06f45c0f49872af.json → ...73a3795cfe8e943716923ed9dfbaed3961af.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
24 changes: 18 additions & 6 deletions
24
...e43ce08ac13c468ef4d90c28ab5fa8ec6ac7.json → ...0c554a9e2a64f0e7953c1e52939b24ccdafa.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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,2 @@ | ||
ALTER TABLE builds DROP COLUMN documentation_size; | ||
ALTER TABLE releases DROP COLUMN source_size; |
This file contains 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,2 @@ | ||
ALTER TABLE builds ADD COLUMN documentation_size BIGINT; | ||
ALTER TABLE releases ADD COLUMN source_size BIGINT; |
This file contains 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
Oops, something went wrong.