forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[migrations] Fix time grain SQLA (apache#5135)
- Loading branch information
1 parent
8ac34da
commit 8f75ea1
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
65 changes: 65 additions & 0 deletions
65
superset/migrations/versions/c5756bec8b47_time_grain_sqla.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |