Skip to content

Commit

Permalink
add migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRoudyk committed Nov 29, 2024
1 parent 02ef2a7 commit 6612bd4
Showing 1 changed file with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
"""add-missing-events-to-nostra-transform_events
Revision ID: cc5f9168f89a
Revises: c53651eb145e
Create Date: 2024-11-29 14:27:49.589339
"""
from typing import Sequence, Union

import sqlalchemy as sa

from alembic import op

# revision identifiers, used by Alembic.
revision: str = "cc5f9168f89a"
down_revision: Union[str, None] = "c53651eb145e"
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###

0 comments on commit 6612bd4

Please sign in to comment.