Skip to content

Commit

Permalink
fix: Wrong password limit in container registry migration script (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine authored Oct 28, 2024
1 parent a833ccb commit 68876e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changes/2986.fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix wrong password limit in container registry migration script.
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def upgrade():
),
sa.Column("project", sa.String(length=255), nullable=False, index=True),
sa.Column("username", sa.String(length=255), nullable=True),
sa.Column("password", sa.String(length=255), nullable=True),
sa.Column("password", sa.String(), nullable=True),
sa.Column(
"ssl_verify", sa.Boolean(), server_default=sa.text("true"), nullable=True, index=True
),
Expand Down

0 comments on commit 68876e5

Please sign in to comment.