1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-12-26 08:05:22 +00:00
webvirtcloud/instances/models.py

13 lines
330 B
Python
Raw Normal View History

2015-02-27 08:53:51 +00:00
from django.db import models
from computes.models import Compute
class Instance(models.Model):
compute = models.ForeignKey(Compute)
name = models.CharField(max_length=20)
uuid = models.CharField(max_length=36)
is_template = models.BooleanField(default=False)
2015-02-27 08:53:51 +00:00
def __unicode__(self):
2015-03-27 15:12:15 +00:00
return self.name