mirror of
				https://github.com/usmannasir/cyberpanel.git
				synced 2025-10-30 18:06:35 +01:00 
			
		
		
		
	
		
			
	
	
		
			8 lines
		
	
	
		
			256 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			8 lines
		
	
	
		
			256 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|  | # -*- coding: utf-8 -*- | ||
|  | 
 | ||
|  | from django.db import models | ||
|  | from websiteFunctions.models import Websites | ||
|  | # Create your models here. | ||
|  | class WPDeployments(models.Model): | ||
|  |    owner = models.ForeignKey(Websites, on_delete=models.CASCADE) | ||
|  |    config = models.TextField() |