const usersTable = pgTable("users", {
id: varchar("id", { length: 256 })
.primaryKey()
.notNull()
.$defaultFn(() => createId()),
name: varchar("name", { length: 256 }).notNull(),
createdAt: timestamp("created_at").defaultNow().notNull()
});
const usersTable = pgTable("users", {
id: varchar("id", { length: 256 })
.primaryKey()
.notNull()
.$defaultFn(() => createId()),
name: varchar("name", { length: 256 }).notNull(),
createdAt: timestamp("created_at").defaultNow().notNull()
});