feat: add steam review fields to games schema

This commit is contained in:
2026-04-30 18:46:18 +08:00
parent bce1e812b5
commit 5dfd8db578
4 changed files with 1776 additions and 0 deletions
+3
View File
@@ -49,6 +49,9 @@ export const games = pgTable(
metacriticScore: integer("metacritic_score"),
metacriticUrl: text("metacritic_url"),
recommendationsTotal: integer("recommendations_total"),
steamReviewScore: integer("steam_review_score"), // 0-100 normalized score
steamReviewSentiment: text("steam_review_sentiment"), // "Overwhelmingly Positive", etc.
steamReviewCount: integer("steam_review_count"), // Total review count from Steam
priceCurrent: integer("price_current"),
priceInitial: integer("price_initial"),
priceCurrency: text("price_currency"),