mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-26 23:19:40 +00:00
12 lines
257 B
Python
12 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
|