What is the recommended way of updating the data currently stored in the database if the definition of the model has changed (e.g. new fields (may be nullable) or just a new index over existing fields)?
I am asking this because if you for example just add a new index, the old database entries are not covered by this index and therefore not visible for some operations.
What is the recommended way of updating the data currently stored in the database if the definition of the model has changed (e.g. new fields (may be nullable) or just a new index over existing fields)?
I am asking this because if you for example just add a new index, the old database entries are not covered by this index and therefore not visible for some operations.