Is there a way to change a CharField to a TextField and keep the data from this column intact?
Right now I have the following:
class TestLog(models.Mod
This is solved with django migrations (1.7+). If you change the type from CharField to TextField, the migration produced is AlterField, which does the right thing.