Skip to content

Commit

Permalink
Showing more fields in DatabaseView
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Dec 10, 2016
1 parent 8ef730b commit afb3c24
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion superset/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,9 @@ def post_update(self, metric):

class DatabaseView(SupersetModelView, DeleteMixin): # noqa
datamodel = SQLAInterface(models.Database)
list_columns = ['database_name', 'creator', 'changed_on_']
list_columns = [
'database_name', 'backend', 'allow_run_sync', 'allow_run_async',
'allow_dml', 'creator', 'changed_on_']
add_columns = [
'database_name', 'sqlalchemy_uri', 'cache_timeout', 'extra',
'expose_in_sqllab', 'allow_run_sync', 'allow_run_async',
Expand Down

0 comments on commit afb3c24

Please sign in to comment.