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:
parent
948d657376
commit
2585e64cfd
2 changed files with 8 additions and 8 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue