mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
237 B
10 lines
237 B
3 months ago
|
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`)
|
||
|
);
|