forked from getredash/redash
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migration that needs to be rolled back before landing #339
- Loading branch information
Allen Short
committed
Mar 6, 2018
1 parent
80d9ab6
commit 0d579e9
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
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,32 @@ | ||
"""incremental query results aggregation | ||
Revision ID: 2a2b3b58464e | ||
Revises: 15041b7085fe | ||
Create Date: 2018-02-16 19:28:38.931253 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = '2a2b3b58464e' | ||
down_revision = '15041b7085fe' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
op.create_table('query_resultsets', | ||
sa.Column('query_id', sa.Integer(), nullable=False), | ||
sa.Column('result_id', sa.Integer(), nullable=False), | ||
sa.ForeignKeyConstraint(['query_id'], ['queries.id'], ), | ||
sa.ForeignKeyConstraint(['result_id'], ['query_results.id'], ), | ||
sa.PrimaryKeyConstraint('query_id', 'result_id') | ||
) | ||
op.add_column(u'queries', sa.Column('schedule_keep_results', sa.Integer(), nullable=True)) | ||
|
||
|
||
def downgrade(): | ||
op.drop_column(u'queries', 'schedule_keep_results') | ||
op.drop_table('query_resultsets') |