-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Add support to qgis
'postgresraster'
layer (#652)
* Add 'postgresraster' qgis layer type support. * ⬆️ Client: g3w-client :g3w-suite/g3w-client#519 --------- Co-authored-by: wlorenzetti <[email protected]> Co-authored-by: volterra79 <[email protected]>
- Loading branch information
1 parent
77fe30d
commit b7c8443
Showing
3 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
g3w-admin/qdjango/migrations/0115_alter_layer_layer_type.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.23 on 2023-11-12 11:16 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('qdjango', '0114_alter_sessiontokenfilter_token'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='layer', | ||
name='layer_type', | ||
field=models.CharField(choices=[('postgres', 'Postgres'), ('spatialite', 'SpatiaLite'), ('raster', 'Raster'), ('wfs', 'WFS'), ('wms', 'WMS'), ('ogr', 'OGR'), ('gdal', 'GDAL'), ('delimitedtext', 'CSV'), ('arcgismapserver', 'ArcGisMapServer'), ('arcgisfeatureserver', 'ArcGisFeatureServer'), ('mssql', 'MSSQL'), ('virtual', 'VirtualLayer'), ('oracle', 'Oracle'), ('vector-tile', 'Vector Tile'), ('wcs', 'WCS'), ('vectortile', 'Vector Tile'), ('mdal', 'Mesh layer'), ('postgresraster', 'PostGis raster')], max_length=255, verbose_name='Type'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters