Using South/Django, I am running into a problem where I\'m trying to add a UNIQUE and NOT NULL column for a model with existing rows in the database. South prompts me to specify a default for the colu
I have a django model which is created using some custom sql. It\'s actually just a SQL view, it\'s not a real table. We are using django south to manage migrations. I have changed the view definition
I am pretty new to Django and just got a job that involves maintaining and adding features to a site I did not design, so I am still kind of confused about the structure and what not of the project. T
I need to perform a datamigration of a model Answer in app Question. In that script there is a dependency such that I need to create an instance of a model Chapter which is in the app Journal. So, I c
I\'m trying for several hours now to do the silliest migration using South, but somehow, I\'ve been failing miserably.. I\'m trying to migrate to Sorl-Thumbnail.
One of my Django models is a subclass and I want to change its superclass to one that is very similar 开发者_Go百科to the original one. In particular, the new superclass describes the same object and
I\'m looking for a solution to have translatable database fields in Django, and the solution needs to be compatible with South.
I\'m running into a problem when using schemamigration to add a column to my database.The field in question, \'is_flagged\', is a boolean belonging to the Video model in my app \'upload\'.When running
I\'m writing a migration using Django\'s South, and it can only work on MySQL databases. Is there anyway I can find out what database is being used (i.e. is this running on mysql or is it on postgres,
I am trying to add a row to my Model and have that option editable in a ModelForm in Django. I want the field to be True by default.Here\'s what I\'m adding to my model: