Skip to content

Commit

Permalink
Merge pull request #1448 from gioman/master
Browse files Browse the repository at this point in the history
small changes to processing "import into postgis" tool
  • Loading branch information
volaya committed Jun 12, 2014
2 parents 28145b4 + 306b148 commit ef70000
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 ef70000

Please sign in to comment.