Fixed #19968 -- Dropped support for PostgreSQL < 8.4.

This commit is contained in:
Aymeric Augustin 2013-03-17 11:45:45 +01:00
parent 9dc5702932
commit 6197935152
10 changed files with 26 additions and 46 deletions

View file

@ -19,7 +19,7 @@ only the common types, such as ``VARCHAR`` and ``INTEGER``. For more obscure
column types, such as geographic polygons or even user-created types such as
`PostgreSQL custom types`_, you can define your own Django ``Field`` subclasses.
.. _PostgreSQL custom types: http://www.postgresql.org/docs/8.2/interactive/sql-createtype.html
.. _PostgreSQL custom types: http://www.postgresql.org/docs/current/interactive/sql-createtype.html
Alternatively, you may have a complex Python object that can somehow be
serialized to fit into a standard database column type. This is another case