Skip to content

Commit

Permalink
migration tables all
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavin2897 committed Nov 20, 2023
1 parent b833e6b commit 6cd8d61
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
"""remoce package_id from molecules table
Revision ID: 49ff7076d8b0
Revises: 1f5e9a1c52dd
Create Date: 2023-11-14 08:53:07.445148
"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = '49ff7076d8b0'
down_revision = '1f5e9a1c52dd'
branch_labels = None
depends_on = None


def upgrade():
op.drop_column('molecules', 'package_id')


def downgrade():
pass

0 comments on commit 6cd8d61

Please sign in to comment.