選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

drivetask.py 438 B

1234567891011
  1. from sqlalchemy import Column, Integer, String, ForeignKey, ARRAY
  2. from db.base import Base
  3. class DriveTask(Base):
  4. Id = Column(Integer, primary_key=True, index=True)
  5. DriverId = Column(ForeignKey("user.Id"), nullable=False)
  6. Description = Column(String, nullable=True)
  7. Status = Column(String, nullable=False)
  8. StartLocation = Column(ARRAY(String), nullable=False)
  9. EndLocation = Column(ARRAY(String), nullable=False)