Skip to content

Commit

Permalink
add extra field to put schema
Browse files Browse the repository at this point in the history
  • Loading branch information
pkdotson committed Sep 21, 2021
1 parent a689c25 commit 92b2552
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions superset/datasets/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ class DatasetColumnsPutSchema(Schema):
verbose_name = fields.String(allow_none=True, Length=(1, 1024))
description = fields.String(allow_none=True)
expression = fields.String(allow_none=True)
extra = fields.Dict(allow_none=True)
filterable = fields.Boolean()
groupby = fields.Boolean()
is_active = fields.Boolean()
Expand Down

0 comments on commit 92b2552

Please sign in to comment.