-
Notifications
You must be signed in to change notification settings - Fork 514
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cli): add queues, workers and worker-groups commands (#4439)
* all * all * all * all * all * all * all * all * all * all * all * all * all * all
- Loading branch information
1 parent
c2ae4fc
commit 610bb7b
Showing
48 changed files
with
2,229 additions
and
1,058 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
backend/.sqlx/query-29eef961fe60944a8e9d78bed03a72f66489d35f526f5547528b233deb596c79.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...19cef5255f5df1b759af3aa4985bb64313e5.json → ...e9ad2c9fcbd75f55817b2114c04207f66e4a.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
22 changes: 17 additions & 5 deletions
22
...bf70f4a6434eb91b4b05b9fb8420beae26af.json → ...616feda64117e16b83a9a32d68ccf09c2bfd.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
backend/.sqlx/query-9cf96fa6364b7f34dc83719b4a0e97e8494393c29f7c8d915aa54da7ab7eed51.json
This file was deleted.
Oops, something went wrong.
29 changes: 29 additions & 0 deletions
29
backend/.sqlx/query-c3b5abbf2c9079d597a55f7c63bc83b8b4da98bda204a40f045a62172cfb4ebb.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
backend/migrations/20240924213010_add_last_occupancy_rates.down.sql
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,5 @@ | ||
-- Add down migration script here | ||
ALTER TABLE worker_ping | ||
DROP COLUMN occupancy_rate_15s, | ||
DROP COLUMN occupancy_rate_5m, | ||
DROP COLUMN occupancy_rate_30m; |
5 changes: 5 additions & 0 deletions
5
backend/migrations/20240924213010_add_last_occupancy_rates.up.sql
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,5 @@ | ||
-- Add up migration script here | ||
ALTER TABLE worker_ping | ||
ADD COLUMN occupancy_rate_15s REAL, | ||
ADD COLUMN occupancy_rate_5m REAL, | ||
ADD COLUMN occupancy_rate_30m REAL; |
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
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
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
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.