Skip to content

Instantly share code, notes, and snippets.

@neslinesli93
Created August 3, 2018 08:26
Show Gist options
  • Save neslinesli93/d5e1eaef85b2d770be3db5d9971f62cb to your computer and use it in GitHub Desktop.
Save neslinesli93/d5e1eaef85b2d770be3db5d9971f62cb to your computer and use it in GitHub Desktop.
create table "Tickers_Data"
(
ticker integer not null
constraint tickers_data_ticker_foreign
references "Tickers",
time date not null,
low double precision not null,
high double precision not null,
open double precision not null,
close double precision not null,
volume double precision,
constraint "Tickers_Data_pkey"
primary key (ticker, time)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment