export const orgUserInfo = pgTable(
"org_user_info",
{
data: jsonb("data"),
orgId: text("org_id").notNull(),
userId: text("user_id").notNull(),
},
(table) => ({
primary: primaryKey(table.userId, table.orgId),
})
)
export const orgUserInfo = pgTable(
"org_user_info",
{
data: jsonb("data"),
orgId: text("org_id").notNull(),
userId: text("user_id").notNull(),
},
(table) => ({
primary: primaryKey(table.userId, table.orgId),
})
)