Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Test check-alembic-multiple-head #3646

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
"""create second head

Revision ID: d900c64c9304
Revises: ecc9f6322be4
Create Date: 2025-02-10 21:43:37.426142

"""

# revision identifiers, used by Alembic.
revision = "d900c64c9304"
down_revision = "ecc9f6322be4"
branch_labels = None
depends_on = None


def upgrade() -> None:
pass


def downgrade() -> None:
pass
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
"""create first head

Comment on lines +1 to +2
Copy link
Preview

Copilot AI Feb 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The docstring should start with a capital letter: 'Create first head'.

Suggested change
"""create first head
"""Create first head

Copilot is powered by AI, so mistakes are possible. Review output carefully before use.

Positive Feedback
Negative Feedback

Provide additional feedback

Please help us improve GitHub Copilot by sharing more details about this comment.

Please select one or more of the options
Revision ID: f17e434686c7
Revises: ecc9f6322be4
Create Date: 2025-02-10 21:43:29.604372

"""

# revision identifiers, used by Alembic.
revision = "f17e434686c7"
down_revision = "ecc9f6322be4"
branch_labels = None
depends_on = None


def upgrade() -> None:
pass


def downgrade() -> None:
pass
Loading