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

Increase some max_length

This commit is contained in:
T. Tran 2019-11-09 00:07:02 +07:00
parent a66ebba12b
commit 08e694db4d
6 changed files with 20 additions and 19 deletions

View file

@ -2,8 +2,8 @@ from django.db import models
class Compute(models.Model):
name = models.CharField(max_length=20)
hostname = models.CharField(max_length=20)
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=50, null=True, blank=True)