Using python south with add_to_class()
 

So I've added a field to the models.__init__ file using the dynamic mechanism of add_to_class()

Eg

#askbot-devel/askbot/models/__init__.py
User.add_to_class('show_interesting_tags', models.BooleanField(default = False))

I want this modification to be picked up when I run South, which I would normally do by

$ ./manage.py schemamigration askbot --auto
Nothing seems to have changed.

As you can see it doesn't pick up the changes.

Any ideas? For instance how was the field 'show_country' added to the migration?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
powlo's avatar
260
powlo
asked 12 years ago

Comments

I'm having the same exact issue, any clue?

Andreu's avatar Andreu (10 years ago)
see more comments