@@ -15,7 +15,7 @@ from config import repo as configrepo
Base = declarative_base()
class Data(Base):
- __tablename__ = 'data'
+ __tablename__ = 'data' # 表名
id = Column(VARCHAR(40),primary_key=True,nullable=False)
name = Column(VARCHAR(30))