Skip to content
Snippets Groups Projects
Util.py 234 B
Newer Older
  • Learn to ignore specific revisions
  • from sqlalchemy import Column, String, BigInteger
    
    from pilab.database import Base
    
    class OffsetType(Base):
        __tablename__ = "stream_offsets"
        stream_name = Column(String, primary_key=True)
        stream_offset = Column(BigInteger)