Files
cfw-autumn/shared/models/orgModels/orgTable.ts
2025-06-16 19:13:40 +01:00

65 lines
1.6 KiB
TypeScript

import {
pgTable,
text,
numeric,
jsonb,
boolean,
unique,
timestamp,
} from "drizzle-orm/pg-core";
import { OrgConfig } from "./orgConfig.js";
import { sql } from "drizzle-orm";
export type SvixConfig = {
sandbox_app_id: string;
live_app_id: string;
};
export type StripeConfig = {
test_api_key: string;
live_api_key: string;
test_webhook_secret: string;
live_webhook_secret: string;
success_url: string;
};
// logo: text("logo"),
// createdAt: timestamp("created_at").notNull(),
// metadata: text("metadata"),
export const organizations = pgTable(
"organizations",
{
id: text().primaryKey(),
slug: text().notNull().unique(),
// Better Auth
name: text("name").notNull(),
logo: text("logo"),
createdAt: timestamp("createdAt", { withTimezone: true }).notNull(),
metadata: text("metadata"),
// Stripe
default_currency: text("default_currency").default("usd"),
stripe_connected: boolean("stripe_connected").default(false),
stripe_config: jsonb("stripe_config").$type<StripeConfig>(),
test_pkey: text("test_pkey"),
live_pkey: text("live_pkey"),
svix_config: jsonb("svix_config")
.$type<SvixConfig>()
.default(sql`'{}'::jsonb`),
created_at: numeric({ mode: "number" }),
config: jsonb().default({}).notNull().$type<OrgConfig>(),
},
(table) => [
unique("organizations_test_pkey_key").on(table.test_pkey),
unique("organizations_live_pkey_key").on(table.live_pkey),
],
);
export type Organization = typeof organizations.$inferSelect & {
api_version: number;
};