mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 02:21:21 +01:00
Fix typo in discordbot guilds db file
This commit is contained in:
parent
0d54b8d588
commit
e597ac24c8
@ -2,7 +2,7 @@ from titanembeds.database import db, Base
|
|||||||
|
|
||||||
class Guilds(Base):
|
class Guilds(Base):
|
||||||
__tablename__ = "guilds"
|
__tablename__ = "guilds"
|
||||||
guild_id = db.Column(db.BigInteger, primary_key=True # Discord guild id
|
guild_id = db.Column(db.BigInteger, primary_key=True) # Discord guild id
|
||||||
name = db.Column(db.String(255)) # Name
|
name = db.Column(db.String(255)) # Name
|
||||||
unauth_users = db.Column(db.Boolean()) # If allowed unauth users
|
unauth_users = db.Column(db.Boolean()) # If allowed unauth users
|
||||||
visitor_view = db.Column(db.Boolean()) # If users are automatically "signed in" and can view chat
|
visitor_view = db.Column(db.Boolean()) # If users are automatically "signed in" and can view chat
|
||||||
|
Loading…
Reference in New Issue
Block a user