Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
fix QGIS import in PostGIS optional parameter. Fixes #16871
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
python/plugins/processing/algs/qgis/ImportIntoPostGIS.py
|
@@ -65,7 +65,7 @@ def defineCharacteristics(self): |
|
|
self.addParameter(ParameterString(self.SCHEMA, |
|
|
self.tr('Schema (schema name)'), 'public')) |
|
|
self.addParameter(ParameterString(self.TABLENAME, |
|
|
self.tr('Table to import to (leave blank to use layer name)'))) |
|
|
self.tr('Table to import to (leave blank to use layer name)'), optional=True)) |
|
|
self.addParameter(ParameterTableField(self.PRIMARY_KEY, |
|
|
self.tr('Primary key field'), self.INPUT, optional=True)) |
|
|
self.addParameter(ParameterString(self.GEOMETRY_COLUMN, |
|
|