mirror of
https://github.com/apache/superset.git
synced 2026-04-20 08:34:37 +00:00
[panoramix] -> [dashed]
This commit is contained in:
22
dashed/migrations/versions/43df8de3a5f4_dash_json.py
Normal file
22
dashed/migrations/versions/43df8de3a5f4_dash_json.py
Normal file
@@ -0,0 +1,22 @@
|
||||
"""empty message
|
||||
|
||||
Revision ID: 43df8de3a5f4
|
||||
Revises: 7dbf98566af7
|
||||
Create Date: 2016-01-18 23:43:16.073483
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '43df8de3a5f4'
|
||||
down_revision = '7dbf98566af7'
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
def upgrade():
|
||||
op.add_column('dashboards', sa.Column('json_metadata', sa.Text(), nullable=True))
|
||||
|
||||
|
||||
def downgrade():
|
||||
op.drop_column('dashboards', 'json_metadata')
|
||||
Reference in New Issue
Block a user