1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 12:04:15 +00:00
webvirtcloud/instances/models.py
2015-03-27 17:12:15 +02:00

11 lines
277 B
Python

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)
def __unicode__(self):
return self.name