1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

add migration for new column details for hypervisor.

This commit is contained in:
andrem 2016-03-18 12:07:42 -03:00
parent 84fe28e9d7
commit fc56e66555
2 changed files with 19 additions and 0 deletions

View file

@ -6,6 +6,7 @@ class Compute(models.Model):
hostname = models.CharField(max_length=20)
login = models.CharField(max_length=20)
password = models.CharField(max_length=14, blank=True, null=True)
details = models.CharField(max_length=50, null=True, blank=True)
type = models.IntegerField()
def __unicode__(self):