mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 10:22:43 +01:00
7 lines
347 B
Python
7 lines
347 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)) # Discord user id of user of cosmetics
|
||
|
css = db.Column(db.Boolean()) # If they can create/edit custom CSS
|