Skip to content

Commit

Permalink
Merge pull request #4897 from NaturalGIS/fix_qgis_import_in_postgis
Browse files Browse the repository at this point in the history
[processing] fix QGIS import in PostGIS optional parameter (fix #16871)
  • Loading branch information
alexbruy committed Jul 20, 2017
2 parents 7138f63 + f2e221d commit 250b959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/ImportIntoPostGIS.py
Expand Up @@ -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,
Expand Down

0 comments on commit 250b959

Please sign in to comment.