-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(tags): convert postgres enum type to varchar
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
...grations/versions/2023-03-29_20-30_07f9a902af1b_drop_postgres_enum_constrains_for_tags.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
"""drop postgres enum constrains for tags | ||
Revision ID: 07f9a902af1b | ||
Revises: b5ea9d343307 | ||
Create Date: 2023-03-29 20:30:10.214951 | ||
""" | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '07f9a902af1b' | ||
down_revision = 'b5ea9d343307' | ||
|
||
from alembic import op | ||
from sqlalchemy.dialects import postgresql | ||
|
||
|
||
def upgrade(): | ||
conn = op.get_bind() | ||
if isinstance(conn.dialect, postgresql.dialect): | ||
conn.execute( | ||
'ALTER TABLE "tagged_object" ALTER COLUMN "object_type" TYPE VARCHAR' | ||
) | ||
conn.execute('ALTER TABLE "tag" ALTER COLUMN "type" TYPE VARCHAR') | ||
conn.execute("DROP TYPE objecttypes") | ||
conn.execute("DROP TYPE tagtypes") | ||
|
||
|
||
def downgrade(): | ||
# Leaving the column type as VARCHAR in case the column contains values that | ||
# do not comply with the previous enum type | ||
pass |