initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
from sqlalchemy import Column, Integer, String
|
||||
from .base import Base
|
||||
|
||||
|
||||
class OverseasFutureoptionMaster(Base):
|
||||
"""해외선물옵션 마스터"""
|
||||
__tablename__ = 'overseas_futureoption_master'
|
||||
|
||||
id = Column(Integer, primary_key=True)
|
||||
name = Column(String(50), index=True) # 종목명
|
||||
code = Column(String(50), index=True) # 종목코드
|
||||
ex = Column(String(30), index=True) # 거래소 코드
|
||||
Reference in New Issue
Block a user