1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 12:04:15 +00:00
webvirtcloud/computes/models.py

13 lines
423 B
Python

from django.db import models
class Compute(models.Model):
name = models.CharField(max_length=64)
hostname = models.CharField(max_length=64)
login = models.CharField(max_length=20)
password = models.CharField(max_length=14, blank=True, null=True)
details = models.CharField(max_length=64, null=True, blank=True)
type = models.IntegerField()
def __unicode__(self):
return self.hostname