forked from MarseyWorld/MarseyWorld
add created_utc column to streamers
parent
1d666b3569
commit
e77a117339
|
@ -3,11 +3,17 @@ from files.helpers.const import SITE
|
||||||
if SITE == 'pcmemes.net':
|
if SITE == 'pcmemes.net':
|
||||||
from sqlalchemy import *
|
from sqlalchemy import *
|
||||||
from files.__main__ import Base
|
from files.__main__ import Base
|
||||||
|
import time
|
||||||
|
|
||||||
class Streamer(Base):
|
class Streamer(Base):
|
||||||
|
|
||||||
__tablename__ = "streamers"
|
__tablename__ = "streamers"
|
||||||
id = Column(String, primary_key=True)
|
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):
|
def __repr__(self):
|
||||||
return f"<Streamer(id={self.id})>"
|
return f"<Streamer(id={self.id})>"
|
||||||
|
|
Loading…
Reference in New Issue