Created
August 3, 2018 08:26
-
-
Save neslinesli93/d5e1eaef85b2d770be3db5d9971f62cb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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