Skip to content

Commit 4f371d0

Browse files
committed
fix data type of brand_ranking_position column of packages
1 parent 64da932 commit 4f371d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fastapi_app/postgres_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class Item(Base):
5252
side_effects: Mapped[str] = mapped_column()
5353
review_4_5_stars: Mapped[str] = mapped_column()
5454
brand_option_in_thai_name: Mapped[str] = mapped_column()
55-
brand_ranking_position: Mapped[str] = mapped_column()
55+
brand_ranking_position: Mapped[int] = mapped_column()
5656
faq: Mapped[str] = mapped_column()
5757
embedding: Mapped[Vector] = mapped_column(Vector(1536)) # ada-002
5858

0 commit comments

Comments
 (0)