Files
CyberPanel/managePHP/models.py

18 lines
448 B
Python
Raw Normal View History

2017-10-24 19:16:36 +05:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models
# Create your models here.
class PHP(models.Model):
phpVers = models.CharField(max_length=5,unique=True)
class installedPackages(models.Model):
phpVers = models.ForeignKey(PHP, on_delete=models.CASCADE)
extensionName = models.CharField(max_length=50)
description = models.CharField(max_length=255)
status = models.IntegerField()