Upgrading and Downgrading ========================= django-sshkey is equipped with [South][1] migrations. This makes changes to the database schema in upgrades or downgrades a simple process. Migrations will only be present on minor version changes. To use South migrations, you must have the south app in your project's INSTALLED_APPS. The following table maps django-sshkey version to migration labels: Version App Name Label Notes 1.0.x sshkey 0001 Migrations were not present in 1.0.x 1.1.x sshkey 0002 2.0.x django_sshkey 0001 See Upgrading from 1.1.x to 2.x below To upgrade, install the new version of django-sshkey and then migrate your project to its corresponding label from the table above using the following command: python manage.py migrate