Index: E:/Software/workspace/django/django/db/models/fields/__init__.py
===================================================================
--- E:/Software/workspace/django/django/db/models/fields/__init__.py	(revision 7739)
+++ E:/Software/workspace/django/django/db/models/fields/__init__.py	(working copy)
@@ -1160,12 +1160,3 @@
     def get_manipulator_field_objs(self):
         return [curry(oldforms.XMLLargeTextField, schema_path=self.schema_path)]
 
-class OrderingField(IntegerField):
-    empty_strings_allowed=False
-    def __init__(self, with_respect_to, **kwargs):
-        self.wrt = with_respect_to
-        kwargs['null'] = True
-        IntegerField.__init__(self, **kwargs )
-
-    def get_manipulator_fields(self, opts, manipulator, change, name_prefix='', rel=False, follow=True):
-        return [oldforms.HiddenField(name_prefix + self.name)]
