Make weight proper number

This commit is contained in:
2025-04-22 18:30:46 +03:00
parent c2723d71e4
commit 905c999e36

View File

@@ -15,7 +15,9 @@ export const users = pgTable("users", {
city: text("city"),
country: text("country"),
sex: text("sex"),
weight: numeric("weight"),
weight: numeric("weight", {
mode: "number",
}),
createdAt: timestamp("created_at").notNull().defaultNow(),
});