Skip to content

Instantly share code, notes, and snippets.

@JohnAmican
Created October 18, 2019 18:58
Show Gist options
  • Save JohnAmican/652c759e9b051cd821a5fa471ccd768f to your computer and use it in GitHub Desktop.
Save JohnAmican/652c759e9b051cd821a5fa471ccd768f to your computer and use it in GitHub Desktop.
CREATE TABLE trades
(
id SERIAL NOT NULL CONSTRAINT trades_pkey PRIMARY KEY,
latest BOOLEAN NOT NULL,
root_id TEXT NOT NULL,
version INTEGER NOT NULL,
price INT
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment