Skip to content

Commit

Permalink
Merge database migration heads
Browse files Browse the repository at this point in the history
- Added a new migration script to merge two branches.
- Defined revision identifiers for Alembic.
- Included empty upgrade and downgrade functions.
  • Loading branch information
rcmerlo committed Feb 27, 2025
1 parent 27a2aa3 commit f5b47b6
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
"""Merge heads after prolific branching
Revision ID: a620e11dda13
Revises: 5af378151328, 11b5cd083450
Create Date: 2025-02-27 11:56:06.642160
"""

# revision identifiers, used by Alembic.
revision = "a620e11dda13"
down_revision = ("5af378151328", "11b5cd083450")
branch_labels = None
depends_on = None


def upgrade() -> None:
pass


def downgrade() -> None:
pass

0 comments on commit f5b47b6

Please sign in to comment.