Skip to content

Instantly share code, notes, and snippets.

@dhbradshaw
Last active August 16, 2023 17:50
Show Gist options
  • Star 62 You must be signed in to star a gist
  • Fork 17 You must be signed in to fork a gist
  • Save dhbradshaw/e2bdeb502b0d0d2acced to your computer and use it in GitHub Desktop.
Save dhbradshaw/e2bdeb502b0d0d2acced to your computer and use it in GitHub Desktop.
Rename field using migrations in django 1.7
To change a field name in django 1.7+
1. Edit the field name in the model (but remember the old field name: you need it for step 3!)
2. Create an empty migration
$ python manage.py makemigrations --empty myApp
3. Edit the empty migration (it's in the migrations folder in your app folder, and will be the most recent migration) by adding
migrations.RenameField('MyModel', 'old_field_name', 'new_field_name'),
to the operations list.
4. Apply the migration
$ python manage.py migrate myApp
@srini-pen
Copy link

It's working to me. Thanks!!

@carldevzw
Copy link

💯. Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment