From e10d653d3a715bc03d412aed89feb672b540b1e3 Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Sun, 10 Mar 2013 21:04:32 -0400 Subject: [PATCH] Improved documentation for adding Sortable to an existing model. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6a192fc..0754caa 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ even if that model does not inherit from Sortable: Sortable has one field: `order` and adds a default ordering value set to `order`. -### South +### Adding Sortable to an existing model If you're adding Sorting to an existing model, it is recommended that you use [django-south](http://south.areacode.com/) to create a schema migration to add the "order" field to your model. You will also need to create a data migration in order to add the appropriate values for the `order` column. Example assuming a model named "Category":