mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 02:21:21 +01:00
13 lines
519 B
Python
13 lines
519 B
Python
from titanembeds.database import db
|
|
|
|
class Patreon(db.Model):
|
|
__tablename__ = "patreon"
|
|
user_id = db.Column(db.BigInteger, nullable=False, primary_key=True) # User ID from patreon
|
|
total_synced = db.Column(db.Integer, nullable=False) # Total cents synced on our end
|
|
|
|
def __init__(self, user_id, total_synced=0):
|
|
self.user_id = user_id
|
|
self.total_synced = total_synced
|
|
|
|
def __repr__(self):
|
|
return '<Patreon {0} {1} {2}>'.format(self.id, self.user_id, self.total_synced) |