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