[Fixed]-Django and RDS change of models

1👍

The workflow is:

  1. [Optional] Generate an initial migration based upon your current model state (only if you don’t already have one), then fake running that initial migration.
  2. Alter your models to the new desired state.
  3. Generate a migration for the new state.
  4. Run that migration on the existing database in RDS.

Leave a comment