-
Notifications
You must be signed in to change notification settings - Fork 97
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
0a86a30
commit d668ec3
Showing
3 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
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 was deleted.
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,10 @@ | ||
CREATE TABLE peerdb_stats.flow_errors ( | ||
id BIGINT PRIMARY KEY GENERATED ALWAYS AS IDENTITY, | ||
flow_name TEXT NOT NULL, | ||
error_message TEXT NOT NULL, | ||
error_type TEXT NOT NULL, | ||
error_timestamp TIMESTAMP NOT NULL DEFAULT now(), | ||
ack BOOLEAN NOT NULL DEFAULT FALSE | ||
); | ||
|
||
CREATE INDEX idx_flow_errors_flow_name ON peerdb_stats.flow_errors (flow_name); |