-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92e0f0a
commit 20fdd82
Showing
9 changed files
with
283 additions
and
11 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
.sqlx/query-1250005571c00e3619803b857b4dd8246c5fb0ece6d3536bbf4046b83eb1dbdb.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
22 changes: 22 additions & 0 deletions
22
.sqlx/query-339014f817c328ecfca7006d96e74330704535d8e5b0ca83aa3c8883e7f74713.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
.sqlx/query-37ef8132482cade63949bce7577baf8b4e9ad57b949eda73f8529d481f62da91.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
34 changes: 34 additions & 0 deletions
34
.sqlx/query-d5d98636783ca4170bc41ffa76f76b666eb2c524086334561cd6b9f2d0936083.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 @@ | ||
DROP TABLE IF EXISTS indexer_aggregates; |
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,9 @@ | ||
CREATE TABLE IF NOT EXISTS indexer_aggregates | ||
( | ||
id SERIAL PRIMARY KEY, | ||
timestamp BIGINT NOT NULL, | ||
graph_account VARCHAR(255) NOT NULL, | ||
message_count BIGINT NOT NULL, | ||
subgraphs_count BIGINT NOT NULL, | ||
UNIQUE(graph_account, timestamp) | ||
); |
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