Skip to content

Commit

Permalink
fix: Move change
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine committed Oct 25, 2024
1 parent 199feb6 commit 5bcf0f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ai/backend/manager/models/container_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class ContainerRegistryRow(Base):
nullable=False,
index=True,
)
project = sa.Column("project", sa.String(length=255), index=True, nullable=False)
project = sa.Column("project", sa.String(length=255), index=True, nullable=True)
username = sa.Column("username", sa.String(length=255), nullable=True)
password = sa.Column("password", sa.String, nullable=True)
ssl_verify = sa.Column(
Expand Down

0 comments on commit 5bcf0f6

Please sign in to comment.