mirror of
https://github.com/apache/superset.git
synced 2026-04-18 07:35:09 +00:00
* 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
23 lines
350 B
Python
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
|