48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import {
|
|
foreignKey,
|
|
jsonb,
|
|
numeric,
|
|
pgTable,
|
|
text,
|
|
unique,
|
|
} from "drizzle-orm/pg-core";
|
|
|
|
import { relations, sql } from "drizzle-orm";
|
|
import { organizations } from "../orgModels/orgTable.js";
|
|
import { MeteredConfig } from "./featureConfig/meteredConfig.js";
|
|
import { CreditSystemConfig } from "./featureConfig/creditConfig.js";
|
|
import { collatePgColumn } from "../../db/utils.js";
|
|
|
|
type FeatureDisplay = {
|
|
singular: string;
|
|
plural: string;
|
|
};
|
|
|
|
export const features = pgTable(
|
|
"features",
|
|
{
|
|
internal_id: text("internal_id").primaryKey().notNull(),
|
|
org_id: text("org_id").notNull(),
|
|
created_at: numeric({ mode: "number" }),
|
|
env: text(),
|
|
|
|
id: text().notNull(),
|
|
name: text(),
|
|
type: text().notNull(),
|
|
config: jsonb().$type<MeteredConfig | CreditSystemConfig>(),
|
|
display: jsonb()
|
|
.default(sql`null`)
|
|
.$type<FeatureDisplay>(),
|
|
},
|
|
(table) => [
|
|
foreignKey({
|
|
columns: [table.org_id],
|
|
foreignColumns: [organizations.id],
|
|
name: "features_org_id_fkey",
|
|
}).onDelete("cascade"),
|
|
unique("feature_id_constraint").on(table.org_id, table.id, table.env),
|
|
],
|
|
);
|
|
|
|
collatePgColumn(features.internal_id, "C");
|