13 lines
405 B
Python
13 lines
405 B
Python
from sqlalchemy import Column, Integer, String
|
|
from .base import Base
|
|
|
|
|
|
class DomesticStockMaster(Base):
|
|
"""국내주식 마스터"""
|
|
__tablename__ = 'domestic_stock_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) # 거래소 코드
|