How to skip updating data of a particular table from django initial_data.json file on each south migration?

42 Views Asked by At

I have a initial_data.json file in my project which is loaded to the database initialy using syncdb. Now every time when i migrate(south migration) the app, old initial_data gets updated in the table. I dont want every tables to get updated again, since some of the columns in the table are modified by user. I need to skip those tables,any solutions.

0

There are 0 best solutions below