-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16818 from davelopez/23.1_increase_external_user_…
…id_db_size [23.1] Increase `CustosAuthnzToken.external_user_id` column size
- Loading branch information
Showing
3 changed files
with
33 additions
and
3 deletions.
There are no files selected for viewing
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
30 changes: 30 additions & 0 deletions
30
...alaxy/model/migrations/alembic/versions_gxy/e93c5d0b47a9_alter_column_external_user_id.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,30 @@ | ||
"""alter column CustosAuthnzToken.external_user_id to increase length | ||
Revision ID: e93c5d0b47a9 | ||
Revises: e0561d5fc8c7 | ||
Create Date: 2023-10-08 12:11:02.024669 | ||
""" | ||
import sqlalchemy as sa | ||
|
||
from galaxy.model.migrations.util import alter_column | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = "e93c5d0b47a9" | ||
down_revision = "e0561d5fc8c7" | ||
branch_labels = None | ||
depends_on = None | ||
|
||
table_name = "custos_authnz_token" | ||
column_name = "external_user_id" | ||
|
||
LONGER_LENGTH = 255 | ||
|
||
|
||
def upgrade(): | ||
alter_column(table_name, column_name, type_=sa.String(LONGER_LENGTH)) | ||
|
||
|
||
def downgrade(): | ||
# No need to downgrade, this is a one-way migration. Otherwise, existing data would be truncated or lost. | ||
pass |
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