I want to add a column to an existing model, and after running "schemamigration --auto" the resulting migration tries to delete another table! Why would it do that?

my models (simplified) -

class A(Model):
    a = CharField()
    b = BooleanField(default=False)   #  <--- this is the new column

class B(Model):                # <---- this is the table South wants to delete
    c = CharField()
    d = ManyToManyField(A, through='C')

the result migration-

def forwards(self, orm):
    # Removing M2M table for field d on 'B'
    db.delete_table('B_d')  # <-------  Why is that?
    # Adding field 'b'
    db.add_column('A', 'b', self.gf('django.db.models.fields.BooleanField')(default=False, blank=True), keep_default=False)
link|improve this question

67% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Did you also add a through model at the same time/since creating the m2m B_d? It's hard to be sure without seeing more code, but looks like South is ditching the automatic join table because there's now a specified 'through' model that will be used for the join. I'm also assuming that model C does exist :o)

link|improve this answer
C does exist :) I didn't add the the 'through' myself, but looks like one of my coworkers added it and deleted the m2m table himself (without using South), so when (much later) I added a column and created an auto migration south tried to delete the table. And I was wondering how my added column triggered that, Doh! – Iftah Feb 14 '11 at 7:26
Ah. Glad you got to the bottom of it. I'm guessing you know that you can apply that specific migration you made with the --fake option so that you can have a set of migrations that let you replicate the state of the DB for tests/new deployments without having to repeat the manual DB changes your colleague did, too. But just in case you didn't, I thought I'd mention it. – stevejalim Feb 14 '11 at 10:19
feedback

The through="C" keyword tells that C model will be used as relational table.

Link to documentation: EXTRA FIELDS ON MANY-TO-MANY RELATIONSHIPS

Other SO question regarding the through keyword: adding the same object twice to a ManyToManyField

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.