Skip to content

Commit

Permalink
Change ordering of fields when adding a table (#1899)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch authored Jan 5, 2017
1 parent 7aab8b0 commit c2d29fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ class TableModelView(SupersetModelView, DeleteMixin): # noqa
'changed_by_', 'changed_on_']
order_columns = [
'link', 'database', 'is_featured', 'changed_on_']
add_columns = ['table_name', 'database', 'schema']
add_columns = ['database', 'schema', 'table_name']
edit_columns = [
'table_name', 'sql', 'is_featured', 'filter_select_enabled',
'database', 'schema',
Expand Down

0 comments on commit c2d29fb

Please sign in to comment.