rrb_bbr
rrb_bbr

Reputation: 3056

Question Regarding Django's South and the Migration of Data

I'm just starting with South and one question that I have is not answered in what I have read so far.

Here is the thing: what about the data? Does South makes a dump of all data into a fixture, changes the schema and than reloads all of it? In the case of my model's change be the deletion of a column, does South parse the data removing it?

Thanks!

Upvotes: 1

Views: 81

Answers (1)

Daniel Roseman
Daniel Roseman

Reputation: 600041

No. Why would it do that? It simply runs ALTER TABLE statements on the database.

Upvotes: 3

Related Questions