mirror of
				https://github.com/TitanEmbeds/Titan.git
				synced 2025-11-03 23:37:09 +01:00 
			
		
		
		
	Fix typo in discordbot guilds db file
This commit is contained in:
		@@ -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
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user