Skip to content

Commit

Permalink
[migrations] Fix time grain SQLA (apache#5135)
Browse files Browse the repository at this point in the history
(cherry picked from commit 0545d11)
  • Loading branch information
john-bodley authored and michellethomas committed Jun 7, 2018
1 parent ff1de7a commit f43e460
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions superset/migrations/versions/c5756bec8b47_time_grain_sqla.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
"""Time grain SQLA
Revision ID: c5756bec8b47
Revises: e502db2af7be
Create Date: 2018-06-04 11:12:59.878742
"""

# revision identifiers, used by Alembic.
revision = 'c5756bec8b47'
down_revision = 'e502db2af7be'

from alembic import op
import json
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, Integer, String, Text

from superset import db

Base = declarative_base()


class Slice(Base):
__tablename__ = 'slices'

id = Column(Integer, primary_key=True)
datasource_type = Column(String(200))
slice_name = Column(String(250))
params = Column(Text)


def upgrade():
bind = op.get_bind()
session = db.Session(bind=bind)

for slc in session.query(Slice).all():
try:
params = json.loads(slc.params)

if params.get('time_grain_sqla') == 'Time Column':
params['time_grain_sqla'] = None
slc.params = json.dumps(params, sort_keys=True)
except Exception:
pass

session.commit()
session.close()


def downgrade():
bind = op.get_bind()
session = db.Session(bind=bind)

for slc in session.query(Slice).all():
try:
params = json.loads(slc.params)

if params.get('time_grain_sqla') is None:
params['time_grain_sqla'] = 'Time Column'
slc.params = json.dumps(params, sort_keys=True)
except Exception:
pass

session.commit()
session.close()

0 comments on commit f43e460

Please sign in to comment.