-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
Signed-off-by: Alexis Asseman <[email protected]>
- Loading branch information
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
CREATE TABLE IF NOT EXISTS scalar_tap_ravs ( | ||
allocation_id CHAR(40) PRIMARY KEY, | ||
timestamp_ns NUMERIC(20) NOT NULL, | ||
rav JSON NOT NULL | ||
CREATE TABLE IF NOT EXISTS scalar_tap_latest_ravs ( | ||
allocation_id CHAR(40) NOT NULL, | ||
sender_address CHAR(40) NOT NULL, | ||
rav JSON NOT NULL, | ||
PRIMARY KEY (allocation_id, sender_address) | ||
); |