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

While cloning volume it breaks if volume name is longer than 20 char. It i more realistic longer than 20 char.

This commit is contained in:
catborise 2018-07-25 09:33:06 +03:00
parent 948d657376
commit 2585e64cfd
2 changed files with 8 additions and 8 deletions

View file

@ -4,7 +4,7 @@ from computes.models import Compute
class Instance(models.Model):
compute = models.ForeignKey(Compute)
name = models.CharField(max_length=20)
name = models.CharField(max_length=120)
uuid = models.CharField(max_length=36)
is_template = models.BooleanField(default=False)
created = models.DateField(auto_now_add=True)