mirror of
https://github.com/apache/superset.git
synced 2026-04-17 23:25:05 +00:00
* Change in files * Renamin files and folders * cleaning up a single piece of lint * Removing boat picture from docs * add superset word mark * Update rename note in docs * Fixing images * Pinning datatables * Fixing issues with mapbox-gl * Forgot to rename one file * Linting * v0.13.0 * adding pyyaml to dev-reqs
23 lines
431 B
Python
23 lines
431 B
Python
"""dim_spec
|
|
|
|
Revision ID: c611f2b591b8
|
|
Revises: ad4d656d92bc
|
|
Create Date: 2016-11-02 17:36:04.970448
|
|
|
|
"""
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'c611f2b591b8'
|
|
down_revision = 'ad4d656d92bc'
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
def upgrade():
|
|
op.add_column('columns', sa.Column('dimension_spec_json', sa.Text(), nullable=True))
|
|
|
|
|
|
def downgrade():
|
|
op.drop_column('columns', 'dimension_spec_json')
|