('name',models.CharField(help_text='Human readable name of image.',max_length=100,verbose_name='name')),
('description',models.TextField(blank=True,help_text='Description of the image.',verbose_name='description')),
('remote_id',models.CharField(help_text='ID, which helps access the image.',max_length=40,unique=True,verbose_name='remote_ID')),
('created_at',models.DateTimeField(auto_now_add=True,help_text='Date, when the image created.')),
('uploaded_by_user',models.BooleanField(default=True,editable=False,help_text='The field is false if the image created from instance')),
('created_by',models.ForeignKey(help_text='The user, who create the image',on_delete=django.db.models.deletion.DO_NOTHING,related_name='created_images',to=settings.AUTH_USER_MODEL)),
('deleted',models.BooleanField(default=False,help_text='Indicates if the instance is ready for garbage collection')),
('disks',models.ManyToManyField(help_text='Disks attached to instance',related_name='instance',to='image.Disk',verbose_name='disks')),
('flavor',models.ForeignKey(help_text='Reasources given to the vm',on_delete=django.db.models.deletion.CASCADE,related_name='instances',to='instance.Flavor',verbose_name='flavor')),