mirror of
				https://github.com/usmannasir/cyberpanel.git
				synced 2025-11-03 20:05:58 +01:00 
			
		
		
		
	
		
			
	
	
		
			10 lines
		
	
	
		
			190 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
		
			190 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 
								 | 
							
								from django.db import models
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class ExamplePlugin(models.Model):
							 | 
						||
| 
								 | 
							
								    name = models.CharField(unique=True, max_length=255)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    class Meta:
							 | 
						||
| 
								 | 
							
								        # db_table = "ExamplePlugin"
							 | 
						||
| 
								 | 
							
								        pass
							 |