-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from weboko/weboko/update-waku-telemetry
feat: update wakuPushFilter table
- Loading branch information
Showing
3 changed files
with
42 additions
and
53 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
ALTER TABLE IF NOT EXISTS wakuRequestResponse ( | ||
id SERIAL PRIMARY KEY, | ||
protocol VARCHAR(50) NOT NULL, | ||
ephemeral BOOLEAN NOT NULL, | ||
timestamp INTEGER NOT NULL, | ||
seenTimestamp INTEGER NOT NULL, | ||
createdAt INTEGER NOT NULL, | ||
contentTopic VARCHAR(255) NOT NULL, | ||
pubsubTopic VARCHAR(255) NOT NULL, | ||
peerId VARCHAR(255) NOT NULL, | ||
messageHash VARCHAR(255) NOT NULL, | ||
errorMessage TEXT, | ||
extraData TEXT, | ||
|
||
CONSTRAINT messages_unique UNIQUE (peerId, messageHash) | ||
); |
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