mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 03:54:15 +00:00
11 lines
257 B
Python
11 lines
257 B
Python
from django.db import models
|
|
|
|
|
|
class Flavor(models.Model):
|
|
label = models.CharField(max_length=12)
|
|
memory = models.IntegerField()
|
|
vcpu = models.IntegerField()
|
|
disk = models.IntegerField()
|
|
|
|
def __unicode__(self):
|
|
return self.name
|