Skip to content

Commit

Permalink
修复综合选股字段长度不够错误
Browse files Browse the repository at this point in the history
  • Loading branch information
myhhub committed Dec 4, 2024
1 parent dbd2805 commit 431f82d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions instock/core/tablestructure.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,9 +537,9 @@
'industry': {'type': NVARCHAR(length=20), 'cn': '行业', 'size': 100,
'map': 'INDUSTRY'},
'area': {'type': NVARCHAR(length=20), 'cn': '地区', 'size': 70, 'map': 'AREA'},
'concept': {'type': NVARCHAR(length=255), 'cn': '概念', 'size': 150,
'concept': {'type': NVARCHAR(length=300), 'cn': '概念', 'size': 150,
'map': 'CONCEPT'},
'style': {'type': NVARCHAR(length=255), 'cn': '板块', 'size': 150,
'style': {'type': NVARCHAR(length=300), 'cn': '板块', 'size': 150,
'map': 'STYLE'},
'is_hs300': {'type': NVARCHAR(length=2), 'cn': '沪300', 'size': 0,
'map': 'IS_HS300'},
Expand Down

0 comments on commit 431f82d

Please sign in to comment.