Skip to content
This repository has been archived by the owner on May 2, 2024. It is now read-only.

fix: change node_address length to varchar instead of char(40) #45

Merged
merged 1 commit into from
Mar 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion postgres-driver/sqlc/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ CREATE TABLE relay (
session_key char(44) NOT NULL,
protocol_app_public_key char(64) NOT NULL,
relay_source_url varchar,
pokt_node_address char(40),
pokt_node_address varchar,
pokt_node_domain varchar,
pokt_node_public_key char(64),
relay_start_datetime timestamp NOT NULL,
Expand Down
Loading