Files
webvirtcloud/definst/models.py
2015-02-27 14:25:41 +02:00

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