feat: вфыв
This commit is contained in:
		
							
								
								
									
										11
									
								
								models/marketplace.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								models/marketplace.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,11 @@
 | 
			
		||||
from sqlalchemy.orm import Mapped, mapped_column
 | 
			
		||||
 | 
			
		||||
from models import BaseModel
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class BaseMarketplace(BaseModel):
 | 
			
		||||
    __tablename__ = 'base_marketplaces'
 | 
			
		||||
    key: Mapped[str] = mapped_column(primary_key=True)
 | 
			
		||||
    name: Mapped[str] = mapped_column()
 | 
			
		||||
 | 
			
		||||
    icon_url: Mapped[str] = mapped_column()
 | 
			
		||||
		Reference in New Issue
	
	Block a user