diff options
| author | Marc Tamlyn <marc.tamlyn@gmail.com> | 2015-01-10 16:14:20 +0000 |
|---|---|---|
| committer | Marc Tamlyn <marc.tamlyn@gmail.com> | 2015-01-10 16:18:19 +0000 |
| commit | 48ad288679a0cb2e2cfb17f128903e6c5b1c4870 (patch) | |
| tree | 75bacb810dbe071058b5c5cf7d8dcb8e20f3f500 /django/contrib/postgres/forms/__init__.py | |
| parent | 916e38802f151b34aaca487dc7e928946e81be73 (diff) | |
Fixed #24001 -- Added range fields for PostgreSQL.
Added support for PostgreSQL range types to contrib.postgres.
- 5 new model fields
- 4 new form fields
- New validators
- Uses psycopg2's range type implementation in python
Diffstat (limited to 'django/contrib/postgres/forms/__init__.py')
| -rw-r--r-- | django/contrib/postgres/forms/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/contrib/postgres/forms/__init__.py b/django/contrib/postgres/forms/__init__.py index 63a0c2c952..bb2685eca1 100644 --- a/django/contrib/postgres/forms/__init__.py +++ b/django/contrib/postgres/forms/__init__.py @@ -1,2 +1,3 @@ from .array import * # NOQA from .hstore import * # NOQA +from .ranges import * # NOQA |
