Fix weight issue

This commit is contained in:
2025-04-22 18:12:40 +03:00
parent d62b2ad86d
commit ebe6d8eb97
2 changed files with 2 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ import {
pgTable,
text,
integer,
customType,
numeric,
timestamp,
jsonb,
} from "drizzle-orm/pg-core";
@@ -15,7 +15,7 @@ export const users = pgTable("users", {
city: text("city"),
country: text("country"),
sex: text("sex"),
weight: integer("weight"),
weight: numeric("weight"),
createdAt: timestamp("created_at").notNull().defaultNow(),
});