mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 03:54:15 +00:00
12 lines
354 B
Python
12 lines
354 B
Python
from django.db import models
|
|
|
|
|
|
class Compute(models.Model):
|
|
name = models.CharField(max_length=20)
|
|
hostname = models.CharField(max_length=20)
|
|
login = models.CharField(max_length=20)
|
|
password = models.CharField(max_length=14, blank=True, null=True)
|
|
type = models.IntegerField()
|
|
|
|
def __unicode__(self):
|
|
return self.hostname
|