Kaydet (Commit) 84226c0b authored tarafından Justin Bronn's avatar Justin Bronn

Fixed `LayerMapping` to support `BigIntegerField` and removed support for `XMLField`.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15961 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 9b3aaae2
......@@ -54,9 +54,7 @@ class LayerMapping(object):
models.TextField : OFTString,
models.URLField : OFTString,
USStateField : OFTString,
# This is a reminder that XMLField is deprecated
# and this needs to be removed in 1.4
models.XMLField : OFTString,
models.BigIntegerField : (OFTInteger, OFTReal, OFTString),
models.SmallIntegerField : (OFTInteger, OFTReal, OFTString),
models.PositiveSmallIntegerField : (OFTInteger, OFTReal, OFTString),
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment