I am trying to map some data onto a staging server and have run into an issue. When running my migrations I get the following error.
Ok so basically when I deploy using Fabric, the south migrate command is being run on the remote machine and fabric outputs that each migration (i.e. 10 of them) were completed. However checking (via
Following is my model: class myUser_Group(models.Model): name = models.CharField(max_length=100) class Channel(models.Model):
I\'ve recently begun using South for migrations in my Dja开发者_如何学JAVAngo project. All was going well until recently when I ran into a peculiar issue.
I have the following model: class League(models.Model): sport = models.ForeignKey(Sport) name = models.CharField(max_length=100, unique=True)
I am using South with my Django app.I have two models that I am changing from having a ForeignKey relation to having a OneToOneField relation. When I ran this migration on my dev database, it ran fine
I\'m using South to generate and apply migrations, rather than managing that myself. Unfortunately, South is refusing to actually do anything. Transcript below:
I am using a custom Django model field to and widget to render a GoogleMap widget in my admin, i also want to use South with my project to handle database migrations. However after much effort i am un
I f开发者_高级运维irst started using MySQL in one of my apps and I am now thinking of moving from MySQL to PostgreSQL.
I have a model that has one column right now, description, that populates an area on a few different pages of the site.The client wants this split up into a couple different columns, so they can popul