Files
superset2/superset/migrations/versions/ea033256294a_.py
Maxime Beauchemin 8042ac876e [explore] improved filters (#2330)
* Support more filter operators

* more filter operators [>, <, >=, <=, ==, !=, LIKE]
* Fix need to escape/double `%` in LIKE clauses
* spinner while loading values when changing column
* datasource config elements to allow to applying predicates when
  fetching filter values
* refactor

* Removing doubling parens

* rebasing

* Merging migrations
2017-03-20 21:10:59 -07:00

23 lines
350 B
Python

"""empty message
Revision ID: ea033256294a
Revises: ('732f1c06bcbf', 'b318dfe5fb6c')
Create Date: 2017-03-16 14:55:59.431283
"""
# revision identifiers, used by Alembic.
revision = 'ea033256294a'
down_revision = ('732f1c06bcbf', 'b318dfe5fb6c')
from alembic import op
import sqlalchemy as sa
def upgrade():
pass
def downgrade():
pass