2015-02-27 08:53:51 +00:00
|
|
|
from django.db import models
|
|
|
|
from computes.models import Compute
|
|
|
|
|
|
|
|
|
|
|
|
class Instance(models.Model):
|
2018-08-08 11:50:58 +00:00
|
|
|
compute = models.ForeignKey(Compute, on_delete=models.CASCADE)
|
2018-07-25 06:33:06 +00:00
|
|
|
name = models.CharField(max_length=120)
|
2015-02-27 08:53:51 +00:00
|
|
|
uuid = models.CharField(max_length=36)
|
2016-01-20 14:40:09 +00:00
|
|
|
is_template = models.BooleanField(default=False)
|
2017-10-26 08:09:58 +00:00
|
|
|
created = models.DateField(auto_now_add=True)
|
2015-02-27 08:53:51 +00:00
|
|
|
|
|
|
|
def __unicode__(self):
|
2015-03-27 15:12:15 +00:00
|
|
|
return self.name
|