Fix the Remote Backup Storage Issue

This commit is contained in:
Usman Nasir
2019-06-08 21:41:43 +00:00
parent 8e2ad7f4b2
commit 0399a43830
3284 changed files with 2254 additions and 1140 deletions

10
managePHP/models.py Normal file → Executable file
View 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()