Skip to content

Commit

Permalink
merge alembic revisions for database
Browse files Browse the repository at this point in the history
  • Loading branch information
iameru committed Dec 6, 2023
1 parent ee05ec8 commit eebcbd8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions server/migrations/versions/20231206-f9221d97c41a_merge.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
"""merge cd18efcfc40d and fba7d048d5c7
Revision ID: f9221d97c41a
Revises: cd18efcfc40d, fba7d048d5c7
Create Date: 2023-12-06 15:00:37.940694
"""
from typing import Sequence, Union

from alembic import op
import sqlalchemy as sa
import sqlmodel


# revision identifiers, used by Alembic.
revision: str = 'f9221d97c41a'
down_revision: Union[str, None] = ('cd18efcfc40d', 'fba7d048d5c7')
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None


def upgrade() -> None:
pass


def downgrade() -> None:
pass

0 comments on commit eebcbd8

Please sign in to comment.