Skip to content
Permalink
Browse files
Merge pull request #4897 from NaturalGIS/fix_qgis_import_in_postgis
[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.
@@ -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,

0 comments on commit 250b959

Please sign in to comment.