add created_utc column to streamers
parent
1d666b3569
commit
e77a117339
|
@ -3,11 +3,17 @@ from files.helpers.const import SITE
|
|||
if SITE == 'pcmemes.net':
|
||||
from sqlalchemy import *
|
||||
from files.__main__ import Base
|
||||
import time
|
||||
|
||||
class Streamer(Base):
|
||||
|
||||
__tablename__ = "streamers"
|
||||
id = Column(String, primary_key=True)
|
||||
created_utc = Column(Integer)
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
if "created_utc" not in kwargs: kwargs["created_utc"] = int(time.time())
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
def __repr__(self):
|
||||
return f"<Streamer(id={self.id})>"
|
||||
|
|
Loading…
Reference in New Issue