HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-157-generic #167-Ubuntu SMP Wed Sep 17 21:35:53 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //usr/local/CyberCP/CLManager/models.py
# -*- coding: utf-8 -*-


from django.db import models
from packages.models import Package

# Create your models here.

class CLPackages(models.Model):
    owner = models.ForeignKey(Package, on_delete=models.CASCADE)
    name = models.CharField(max_length=50,unique=True)
    speed = models.CharField(max_length=50)
    vmem = models.CharField(max_length=50)
    pmem = models.CharField(max_length=50)
    io = models.CharField(max_length=50)
    iops = models.CharField(max_length=50)
    ep = models.CharField(max_length=50)
    nproc = models.CharField(max_length=50)
    inodessoft = models.CharField(max_length=50)
    inodeshard = models.CharField(max_length=50)