Skip to content

Commit

Permalink
Update travis building
Browse files Browse the repository at this point in the history
  • Loading branch information
corentin.falcone committed Jan 11, 2019
1 parent c0dd72e commit 911a361
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/db_manager/db_plugins/plugin.py
Expand Up @@ -1133,8 +1133,8 @@ def update(self, new_name, new_type_str=None, new_not_null=None, new_default_str
# Update also a new_comment
new_comment = None
ret = self.table().database().connector.updateTableColumn((self.table().schemaName(), self.table().name),
self.name, new_name, new_type_str,
new_not_null, new_default_str, new_comment)
self.name, new_name, new_type_str,
new_not_null, new_default_str, new_comment)
if ret is not False:
self.table().refreshFields()
return ret
Expand Down

0 comments on commit 911a361

Please sign in to comment.