Skip to content
Permalink
Browse files
fix QGIS import in PostGIS optional parameter. Fixes #16871
  • Loading branch information
gioman committed Jul 20, 2017
1 parent 63250dc commit f2e221d
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 f2e221d

Please sign in to comment.