-
Notifications
You must be signed in to change notification settings - Fork 1
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
556749e
commit d56a15b
Showing
6 changed files
with
207 additions
and
53 deletions.
There are no files selected for viewing
114 changes: 114 additions & 0 deletions
114
.sqlx/query-2efcc208d348efcbbbed7fa33fe362b23947acdc25d0b550d27663dd875d8e4a.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
.sqlx/query-eb014adf5d4c624cafca27446f1f0d91bf15ae4ca87e6f50e694584d0bd0083e.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,13 @@ | ||
-- Add migration script here | ||
CREATE TABLE payloads ( | ||
id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, | ||
timestamp TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
source VARCHAR(255), | ||
synthetic VARCHAR(255), | ||
synthetic_numerator VARCHAR(1024), | ||
synthetic_denominator VARCHAR(1024), | ||
validity_lower BIGINT UNSIGNED, | ||
validity_upper BIGINT UNSIGNED, | ||
payload BLOB, | ||
error_text VARCHAR(8192) | ||
); |
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