mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +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
24 lines
530 B
Python
24 lines
530 B
Python
"""log more
|
|
|
|
Revision ID: 430039611635
|
|
Revises: d827694c7555
|
|
Create Date: 2016-02-10 08:47:28.950891
|
|
|
|
"""
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '430039611635'
|
|
down_revision = 'd827694c7555'
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
def upgrade():
|
|
op.add_column('logs', sa.Column('dashboard_id', sa.Integer(), nullable=True))
|
|
op.add_column('logs', sa.Column('slice_id', sa.Integer(), nullable=True))
|
|
|
|
|
|
def downgrade():
|
|
op.drop_column('logs', 'slice_id')
|
|
op.drop_column('logs', 'dashboard_id')
|