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

fix: migration #439

Merged
merged 1 commit into from
Jan 15, 2025
Merged
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
Expand Up @@ -20,6 +20,18 @@


def upgrade() -> None:
# Create the enum type in the database
image_processing_status_enum = sa.Enum(
"NOT_STARTED",
"PROCESSING",
"SUCCESS",
"FAILED",
name="imageprocessingstatus",
)
image_processing_status_enum.create(
op.get_bind()
) # Bind the enum type to the database

# ### commands auto generated by Alembic - please adjust! ###
op.add_column(
"projects",
Expand All @@ -43,4 +55,15 @@ def upgrade() -> None:
def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column("projects", "image_processing_status")

# Drop the enum type from the database
image_processing_status_enum = sa.Enum(
"NOT_STARTED",
"PROCESSING",
"SUCCESS",
"FAILED",
name="imageprocessingstatus",
)
image_processing_status_enum.drop(op.get_bind()) # Drop the enum type

# ### end Alembic commands ###
Loading