Files
OptiTrainer/server/quoteDBs/createTable.sql
Joe Tretter 5321e2430d - Style enhancements
- Removal of single order items
- Add index to table creation script
2020-04-24 17:18:55 -05:00

6 lines
177 B
SQL

CREATE TABLE IF NOT EXISTS "OptionQuotes"( "TimeStamp"DateTime DEFAULT CURRENT_TIMESTAMP,
"Symbol" Text,
"Data" Text);
CREATE INDEX smbDaTi on OptionQuotes (Symbol,timestamp);