Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Oct 20, 2015
1 parent 06e57bf commit a7fca30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions panoramix/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def get_table(self, table_name):
autoload_with=self.get_sqla_engine())


class SqlaTable(Model, Queryable):
class SqlaTable(Model, Queryable, AuditMixinNullable):
type = "table"

__tablename__ = 'tables'
Expand Down Expand Up @@ -637,7 +637,7 @@ def refresh_datasources(self):
Datasource.sync_to_db(datasource, self)


class Datasource(Model, AuditMixin, Queryable):
class Datasource(Model, AuditMixinNullable, Queryable):
type = "druid"

baselink = "datasourcemodelview"
Expand Down

0 comments on commit a7fca30

Please sign in to comment.