[Solved]-Django – alter bases in migrations
3👍 Had the same issue with the bases and I ended up writing my own migration operation like below. However, worth mention that the whole process looks like follows: Add a new IntegerField to the model with null=True Copy data from xxx_ptr to the new field Remove the xxx_ptrfield Run the RemoveModelBasesOptions operation Rename temporary … Read more