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 8b243ac commit 42d13a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ai/backend/manager/models/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class ImageRow(Base):
__tablename__ = "images"
id = IDColumn("id")
name = sa.Column("name", sa.String, nullable=False, index=True)
project = sa.Column("project", sa.String, nullable=False)
project = sa.Column("project", sa.String, nullable=True)
image = sa.Column("image", sa.String, nullable=False, index=True)
created_at = sa.Column(
"created_at",
Expand Down

0 comments on commit 42d13a2

Please sign in to comment.