Commit 0e086e9d by Aeolus

agent_spot表字段修改

parent e04830b3
......@@ -8,6 +8,6 @@ class AgentSpot(BaseModel):
__tablename__ = 'agent_spot'
id = Column(Integer, primary_key=True)
agent_no = Column(String(255, 'utf8mb4_unicode_ci'), nullable=False, server_default=FetchedValue())
agent_no = Column(Integer, nullable=False, server_default=FetchedValue())
spot_no = Column(Integer, nullable=False, server_default=FetchedValue())
status = Column(Integer, nullable=False, server_default=FetchedValue())
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment