Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update connector.py
  • Loading branch information
Ailurupoda committed Jan 21, 2019
1 parent 1194828 commit 9184a5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/db_plugins/postgis/connector.py
Expand Up @@ -857,7 +857,7 @@ def deleteTableColumn(self, table, column):
sql = u"ALTER TABLE %s DROP %s" % (self.quoteId(table), self.quoteId(column))
self._execute_and_commit(sql)

def updateTableColumn(self, table, column, new_name=None, data_type=None, not_null=None, default=None, comment=None):
def updateTableColumn(self, table, column, new_name=None, data_type=None, not_null=None, default=None, comment=None, other=None):
if new_name is None and data_type is None and not_null is None and default is None and comment is None:
return

Expand Down

0 comments on commit 9184a5b

Please sign in to comment.