mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Refs #31196 -- Installed postgis_raster extension on PostGIS 3+.
This commit is contained in:
parent
cc70a0343e
commit
a6b4c07b6e
7 changed files with 93 additions and 2 deletions
|
@ -50,6 +50,11 @@ process. An alternative is to use a migration operation in your project::
|
|||
...
|
||||
]
|
||||
|
||||
If you plan to use PostGIS raster functionality on PostGIS 3+, you should also
|
||||
activate the ``postgis_raster`` extension. You can install the extension using
|
||||
the :class:`~django.contrib.postgres.operations.CreateExtension` migration
|
||||
operation, or directly by running ``CREATE EXTENSION postgis_raster;``.
|
||||
|
||||
GeoDjango does not currently leverage any `PostGIS topology functionality`__.
|
||||
If you plan to use those features at some point, you can also install the
|
||||
``postgis_topology`` extension by issuing ``CREATE EXTENSION
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue