mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-14 18:11:23 +01:00
16 lines
540 B
Python
16 lines
540 B
Python
|
from titanembeds.database import db
|
||
|
|
||
|
class DisabledGuilds(db.Model):
|
||
|
__tablename__ = "disabled_guilds"
|
||
|
id = db.Column(db.Integer, primary_key=True) # Auto increment id
|
||
|
guild_id = db.Column(db.String(255), nullable=False) # Server id that is disabled
|
||
|
|
||
|
def __init__(self, guild_id):
|
||
|
self.guild_id = guild_id
|
||
|
|
||
|
def list_disabled_guilds():
|
||
|
q = db.session.query(DisabledGuilds).all()
|
||
|
their_ids = []
|
||
|
for guild in q:
|
||
|
their_ids.append(guild.guild_id)
|
||
|
return their_ids
|