Skip to content

Commit 554499b

Browse files
authored
fix alembic? (#61)
1 parent 44a7088 commit 554499b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

src/alembic/versions/43f71e4bd6fc_.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
"""empty message
2+
3+
Revision ID: 43f71e4bd6fc
4+
Revises: 04a41462e0a8, 75857bf0c826
5+
Create Date: 2024-08-07 07:42:44.774426
6+
7+
"""
8+
from collections.abc import Sequence
9+
from typing import Union
10+
11+
import sqlalchemy as sa
12+
from alembic import op
13+
14+
# revision identifiers, used by Alembic.
15+
revision: str = "43f71e4bd6fc"
16+
down_revision: str | None = ("04a41462e0a8", "75857bf0c826")
17+
branch_labels: str | Sequence[str] | None = None
18+
depends_on: str | Sequence[str] | None = None
19+
20+
21+
def upgrade() -> None:
22+
pass
23+
24+
25+
def downgrade() -> None:
26+
pass

0 commit comments

Comments
 (0)