Skip to content

Commit

Permalink
fix: Address alter_column warning for MSSQL (meltano#6643)
Browse files Browse the repository at this point in the history
fix: Address state enum alter_column for MSSQL
  • Loading branch information
edgarrmondragon committed Aug 18, 2022
1 parent 6de7c10 commit 917f132
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ def upgrade():
column_name="state",
type_=sa.types.String(max_string_length),
existing_type=sa.Enum(State, name="job_state"),
existing_nullable=True,
)

# In postgresql, drop the created Enum type so that
Expand Down

0 comments on commit 917f132

Please sign in to comment.