File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 55</p >
66
77<p align =" center " >
8- <img src ="https://img.shields.io/badge/version-1.0.0 -blueviolet.svg"/>
8+ <img src ="https://img.shields.io/badge/version-1.0.2 -blueviolet.svg"/>
99 <img src ="https://img.shields.io/badge/platform-windows|linux|macos-yellow.svg"/>
1010 <img src ="https://img.shields.io/badge/python-3.7|3.8|3.9|3.10-blue.svg" />
1111</p >
@@ -46,9 +46,11 @@ VeighNa不会主动为MySQL数据库创建实例,所以使用前请确保datab
4646# 选择数据实例
4747use vnpy;
4848
49- # 修改三张表symbol字段的BINARY属性
49+ # 修改四张表symbol字段的BINARY属性
5050ALTER TABLE `dbbaroverview` MODIFY COLUMN `symbol` VARCHAR(45) BINARY;
5151
52+ ALTER TABLE `dbtickoverview` MODIFY COLUMN `symbol` VARCHAR(45) BINARY;
53+
5254ALTER TABLE `dbbardata` MODIFY COLUMN `symbol` VARCHAR(45) BINARY;
5355
5456ALTER TABLE `dbtickdata` MODIFY COLUMN `symbol` VARCHAR(45) BINARY;
Original file line number Diff line number Diff line change 11[metadata]
22name = vnpy_mysql
3- version = 1.0.1
3+ version = 1.0.2
44url = https://www.vnpy.com
55license = MIT
66author = Xiaoyou Chen
Original file line number Diff line number Diff line change 3636
3737
3838class DateTimeMillisecondField (DateTimeField ):
39- # 毫秒支持
39+ """支持毫秒的日期时间戳字段"""
40+
4041 def get_modifiers (self ):
42+ """毫秒支持"""
4143 return [3 ]
4244
4345
You can’t perform that action at this time.
0 commit comments