mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-26 15:13:33 +00:00
12 lines
277 B
Python
12 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
|