Skip to content

Commit

Permalink
small changes to import into postgis tool
Browse files Browse the repository at this point in the history
  • Loading branch information
gioman committed Jun 12, 2014
1 parent fc8d07e commit 306b148
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/ImportIntoPostGIS.py
Expand Up @@ -144,12 +144,12 @@ def defineCharacteristics(self):
))
self.addParameter(ParameterTableField(self.PRIMARY_KEY, 'Primary key field',
self.INPUT, optional=True))
self.addParameter(ParameterString(self.GEOMETRY_COLUMN, 'Geometry column', 'the_geom'
self.addParameter(ParameterString(self.GEOMETRY_COLUMN, 'Geometry column', 'geom'
))
self.addParameter(ParameterBoolean(self.OVERWRITE, 'Overwrite', True))
self.addParameter(ParameterBoolean(self.CREATEINDEX,
'Create spatial index', True))
self.addParameter(ParameterBoolean(self.LOWERCASE_NAMES,
'Convert field names to lowercase', False))
'Convert field names to lowercase', True))
self.addParameter(ParameterBoolean(self.DROP_STRING_LENGTH,
'Drop length constraints on character fields', False))

0 comments on commit 306b148

Please sign in to comment.