mdserver-web/plugins/cryptocurrency_trade/conf/create.sql

10 lines
237 B
MySQL
Raw Permalink Normal View History

2025-02-10 12:17:13 -05:00
CREATE TABLE IF NOT EXISTS `ct_xx1_xx2` (
`addtime` BIGINT(20) not NULL,
`open` float NOT NULL,
`high` float NOT NULL,
`low` float NOT NULL,
`close` float NOT NULL,
`vol` float NOT NULL,
UNIQUE KEY `addtime` (`addtime`)
);