mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-26 23:19:40 +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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user