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
e597ac24c8
commit
56a3527152
@ -16,7 +16,7 @@ class Guilds(Base):
|
|||||||
channels = db.Column(db.Text().with_variant(db.Text(length=4294967295), 'mysql'))# Guild channels
|
channels = db.Column(db.Text().with_variant(db.Text(length=4294967295), 'mysql'))# Guild channels
|
||||||
webhooks = db.Column(db.Text().with_variant(db.Text(length=4294967295), 'mysql'))# Guild webhooks
|
webhooks = db.Column(db.Text().with_variant(db.Text(length=4294967295), 'mysql'))# Guild webhooks
|
||||||
emojis = db.Column(db.Text().with_variant(db.Text(length=4294967295), 'mysql')) # Guild Emojis
|
emojis = db.Column(db.Text().with_variant(db.Text(length=4294967295), 'mysql')) # Guild Emojis
|
||||||
owner_id = db.Column(db.BigInteger # Snowflake of the owner
|
owner_id = db.Column(db.BigInteger) # Snowflake of the owner
|
||||||
icon = db.Column(db.String(255)) # The icon string, null if none
|
icon = db.Column(db.String(255)) # The icon string, null if none
|
||||||
invite_link = db.Column(db.String(255)) # Custom Discord Invite Link
|
invite_link = db.Column(db.String(255)) # Custom Discord Invite Link
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user