mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-06 13:25:51 +01:00
Fix the Remote Backup Storage Issue
This commit is contained in:
10
managePHP/models.py
Normal file → Executable file
10
managePHP/models.py
Normal file → Executable file
@@ -15,3 +15,13 @@ class installedPackages(models.Model):
|
||||
description = models.CharField(max_length=255)
|
||||
status = models.IntegerField()
|
||||
|
||||
|
||||
class ApachePHP(models.Model):
|
||||
phpVers = models.CharField(max_length=5,unique=True)
|
||||
|
||||
class installedPackagesApache(models.Model):
|
||||
phpVers = models.ForeignKey(ApachePHP, on_delete=models.CASCADE)
|
||||
extensionName = models.CharField(max_length=50)
|
||||
description = models.CharField(max_length=255)
|
||||
status = models.IntegerField()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user