mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-14 18:11:23 +01:00
7 lines
395 B
Python
7 lines
395 B
Python
from titanembeds.database import db
|
|
|
|
class Cosmetics(db.Model):
|
|
__tablename__ = "cosmetics"
|
|
id = db.Column(db.Integer, primary_key=True) # Auto increment id
|
|
user_id = db.Column(db.String(255), nullable=False) # Discord user id of user of cosmetics
|
|
css = db.Column(db.Boolean(), nullable=False) # If they can create/edit custom CSS |