2022-09-04 20:53:34 +00:00
|
|
|
from sqlalchemy import *
|
|
|
|
from files.__main__ import Base
|
|
|
|
import time
|
|
|
|
|
|
|
|
|
|
|
|
class Casino_Game(Base):
|
2022-09-04 23:15:37 +00:00
|
|
|
__tablename__ = "casino_games"
|
2022-09-04 20:53:34 +00:00
|
|
|
|
2022-09-04 23:15:37 +00:00
|
|
|
id = Column(Integer, primary_key=True)
|
|
|
|
user_id = Column(Integer, ForeignKey("users.id"))
|
2022-09-19 20:40:33 +00:00
|
|
|
created_utc = Column(Integer)
|
2022-09-04 23:15:37 +00:00
|
|
|
active = Column(Boolean, default=True)
|
|
|
|
currency = Column(String)
|
|
|
|
wager = Column(Integer)
|
|
|
|
winnings = Column(Integer)
|
|
|
|
kind = Column(String)
|
|
|
|
game_state = Column(JSON)
|
2022-09-04 20:53:34 +00:00
|
|
|
|
2022-09-19 20:40:33 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
if "created_utc" not in kwargs:
|
|
|
|
kwargs["created_utc"] = int(time.time())
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
2022-09-04 23:15:37 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return f"<CasinoGame(id={self.id})>"
|