bxr
bxr
Explore posts from servers
BABetter Auth
Created by bxr on 3/4/2025 in #help
stripe multiple subscription for one customer id
awesome thank you
5 replies
BABetter Auth
Created by bxr on 2/28/2025 in #help
openapi not showing commands
ty :salute:
8 replies
BABetter Auth
Created by bxr on 2/28/2025 in #help
openapi not showing commands
that worked 🙂
8 replies
BABetter Auth
Created by bxr on 2/28/2025 in #help
openapi not showing commands
thanks that worked. since we are here. i tried signing up through postman
# SERVER_ERROR: 1 | // src/error/index.ts
2 | var BetterAuthError = class extends Error {
3 | constructor(message, cause) {
4 | super(message);
^
BetterAuthError: [# Drizzle Adapter]: The model "user" was not found in the schema object. Please pass the schema directly to the adapter options.
cause: undefined,
# SERVER_ERROR: 1 | // src/error/index.ts
2 | var BetterAuthError = class extends Error {
3 | constructor(message, cause) {
4 | super(message);
^
BetterAuthError: [# Drizzle Adapter]: The model "user" was not found in the schema object. Please pass the schema directly to the adapter options.
cause: undefined,
i get this error, but i am using generated schemas from the better-auth cli
export const user = pgTable("user", {
id: text("id").primaryKey(),
name: text("name").notNull(),
email: text("email").notNull().unique(),
emailVerified: boolean("email_verified").notNull(),
image: text("image"),
createdAt: timestamp("created_at").notNull(),
updatedAt: timestamp("updated_at").notNull(),
role: text("role"),
banned: boolean("banned"),
banReason: text("ban_reason"),
banExpires: timestamp("ban_expires"),
});
export const user = pgTable("user", {
id: text("id").primaryKey(),
name: text("name").notNull(),
email: text("email").notNull().unique(),
emailVerified: boolean("email_verified").notNull(),
image: text("image"),
createdAt: timestamp("created_at").notNull(),
updatedAt: timestamp("updated_at").notNull(),
role: text("role"),
banned: boolean("banned"),
banReason: text("ban_reason"),
banExpires: timestamp("ban_expires"),
});
8 replies