CREATE TABLE streamer (
userid int NOT NULL,
tokenPair json,
PRIMARY KEY (userid),
FOREIGN KEY (userid) REFERENCES users(userid)
)