Skip to content

Commit

Permalink
migrations fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MooreTheAnalyst committed Nov 27, 2024
1 parent 70e7cbf commit 4fa8c05
Show file tree
Hide file tree
Showing 4 changed files with 116 additions and 328 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
"""nostra events
Revision ID: a863d4cbc069
Revises: d3691f6e8c5a
Create Date: 2024-11-27 11:47:08.452320
"""
from typing import Sequence, Union

from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision: str = 'a863d4cbc069'
down_revision: Union[str, None] = 'd3691f6e8c5a'
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 ###
Loading

0 comments on commit 4fa8c05

Please sign in to comment.