I modify project based on Django framework. I have form to add an item. Item has the cover (an image). Current version of model for this item store cover's url like this:
class Item(models.Model):
title = models.CharField(max_length = 255, db_index = True)
slug = models.CharField(max_length = 80, db_index = True)
categories = models.ManyToManyField(Category)
cover_url = models.CharField(max_length = 255, null = True, default = None)
...
Important notice that some images stored on other servers (different file hosting).
I want to replace CharField with ImageField. But how about existing items? I want to change model's schema and save all previously added images. How I can achieve this goal?
Maybe some reasons for this modification can be helpful. The main reason is to provide to users ability to upload images from their computer (not only insert the urls as it was).
TIA!
CharFieldandImageFieldare stored as VARCHAR types in the database. The only real difference comes on the Python side. – Chris Pratt Jul 30 '12 at 14:51ImageFieldon your model. My point is that changing the field fromCharFieldtoImageFieldwon't require schema changes. – Chris Pratt Jul 30 '12 at 16:32