feat: add view leaderboard item

This commit is contained in:
2024-08-08 14:46:28 +07:00
parent 8f286de718
commit e8ed08d49b
13 changed files with 672 additions and 6 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ export const repositories = sqliteTable(
uri: text("uri").notNull(),
language: text("language").notNull(),
stars: integer("stars").notNull(),
forks: integer("stars").notNull(),
forks: integer("forks").notNull(),
lastUpdate: text("last_update").notNull(),
languages: text("languages", { mode: "json" }).$type<Language[]>(),
contributors: text("contributors", { mode: "json" }).$type<Contributor[]>(),