20 lines
574 B
Python
20 lines
574 B
Python
|
import time
|
||
|
|
||
|
from sqlalchemy import Column, ForeignKey
|
||
|
from sqlalchemy.sql.sqltypes import *
|
||
|
|
||
|
from files.classes import Base
|
||
|
|
||
|
class PushSubscription(Base):
|
||
|
__tablename__ = "push_subscriptions"
|
||
|
user_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
|
||
|
subscription_json = 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"<{self.__class__.__name__}(id={self.id})>"
|