mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 03:54:15 +00:00
13 lines
421 B
Python
13 lines
421 B
Python
from django.db.models import Model, ForeignKey, CharField, BooleanField, DateField, CASCADE
|
|
from computes.models import Compute
|
|
|
|
|
|
class Instance(Model):
|
|
compute = ForeignKey(Compute, on_delete=CASCADE)
|
|
name = CharField(max_length=120)
|
|
uuid = CharField(max_length=36)
|
|
is_template = BooleanField(default=False)
|
|
created = DateField(auto_now_add=True)
|
|
|
|
def __unicode__(self):
|
|
return self.name
|