Simplify product

This commit is contained in:
2025-05-31 18:24:02 +03:00
parent 2dac6c5bd8
commit 0cd5c6cb69
6 changed files with 2 additions and 74 deletions

View File

@@ -6,7 +6,6 @@ import {
numeric,
timestamp,
jsonb,
boolean,
} from "drizzle-orm/pg-core";
export const users = pgTable("users", {
@@ -16,9 +15,6 @@ export const users = pgTable("users", {
city: text("city"),
country: text("country"),
sex: text("sex"),
premium: boolean("premium")
.notNull()
.$defaultFn(() => false),
weight: numeric("weight", {
mode: "number",
}),