37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { organizations } from "@models/orgModels/orgTable.js";
|
|
import { sql } from "drizzle-orm";
|
|
import {
|
|
foreignKey,
|
|
jsonb,
|
|
pgTable,
|
|
text,
|
|
uniqueIndex,
|
|
} from "drizzle-orm/pg-core";
|
|
|
|
export const vercelResources = pgTable(
|
|
"vercel_resources",
|
|
{
|
|
id: text("id").primaryKey().notNull(), // vre_[...]
|
|
org_id: text("org_id").notNull(), // org_[...]
|
|
env: text("env").notNull(), // live, sandbox
|
|
installation_id: text("installation_id").notNull(), // icfg_[...]
|
|
name: text("name").notNull(),
|
|
status: text("status").notNull(),
|
|
metadata: jsonb("metadata").notNull().default({}),
|
|
},
|
|
(table) => [
|
|
foreignKey({
|
|
columns: [table.org_id],
|
|
foreignColumns: [organizations.id],
|
|
name: "vercel_resources_org_id_fkey",
|
|
}).onDelete("cascade"),
|
|
// Partial unique index: enforces one live name per installation.
|
|
// Excludes soft-deleted rows so a name can be reused after uninstall.
|
|
uniqueIndex("vercel_resources_installation_name_unique_idx")
|
|
.on(table.org_id, table.env, table.installation_id, table.name)
|
|
.where(sql`status <> 'uninstalled'`),
|
|
],
|
|
);
|
|
|
|
export type VercelResource = typeof vercelResources.$inferSelect;
|