Skip to content

Commit

Permalink
fix: multiple heads error (#1474)
Browse files Browse the repository at this point in the history
  • Loading branch information
ImMohammad20000 authored Dec 2, 2024
1 parent 8346ce4 commit b703d89
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
"""fix multiple heads error
Revision ID: be0c5f840473
Revises: d0a3960f5dad, 54c4b8c525fc
Create Date: 2024-12-02 15:41:08.152196
"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = 'be0c5f840473'
down_revision = ('d0a3960f5dad', '54c4b8c525fc')
branch_labels = None
depends_on = None


def upgrade() -> None:
pass


def downgrade() -> None:
pass

0 comments on commit b703d89

Please sign in to comment.