Advertisement
duydark94

History Chart

Oct 17th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. CREATE TABLE `history_usd_try` (
  2. `id` INT(11) NOT NULL AUTO_INCREMENT,
  3. `bid` DECIMAL(10,5) NULL DEFAULT NULL,
  4. `ask` DECIMAL(10,5) NULL DEFAULT NULL,
  5. `last` DECIMAL(10,5) NULL DEFAULT NULL,
  6. `high` DECIMAL(10,5) NULL DEFAULT NULL,
  7. `low` DECIMAL(10,5) NULL DEFAULT NULL,
  8. `close` DECIMAL(10,5) NULL DEFAULT NULL,
  9. `timestamp` TIMESTAMP NULL DEFAULT NULL,
  10. PRIMARY KEY (`id`)
  11. )
  12. COLLATE='utf8mb4_unicode_ci'
  13. ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement