2026-02-25 08:38:46 -06:00
|
|
|
import {
|
|
|
|
|
boolean,
|
|
|
|
|
index,
|
|
|
|
|
jsonb,
|
|
|
|
|
pgTable,
|
|
|
|
|
text,
|
|
|
|
|
timestamp,
|
|
|
|
|
uuid,
|
|
|
|
|
} from "drizzle-orm/pg-core";
|
|
|
|
|
import { companies } from "./companies.js";
|
|
|
|
|
import { projects } from "./projects.js";
|
|
|
|
|
|
|
|
|
|
export const projectWorkspaces = pgTable(
|
|
|
|
|
"project_workspaces",
|
|
|
|
|
{
|
|
|
|
|
id: uuid("id").primaryKey().defaultRandom(),
|
|
|
|
|
companyId: uuid("company_id").notNull().references(() => companies.id),
|
|
|
|
|
projectId: uuid("project_id").notNull().references(() => projects.id, { onDelete: "cascade" }),
|
|
|
|
|
name: text("name").notNull(),
|
2026-02-25 21:35:33 -06:00
|
|
|
cwd: text("cwd"),
|
2026-02-25 08:38:46 -06:00
|
|
|
repoUrl: text("repo_url"),
|
|
|
|
|
repoRef: text("repo_ref"),
|
|
|
|
|
metadata: jsonb("metadata").$type<Record<string, unknown>>(),
|
|
|
|
|
isPrimary: boolean("is_primary").notNull().default(false),
|
|
|
|
|
createdAt: timestamp("created_at", { withTimezone: true }).notNull().defaultNow(),
|
|
|
|
|
updatedAt: timestamp("updated_at", { withTimezone: true }).notNull().defaultNow(),
|
|
|
|
|
},
|
|
|
|
|
(table) => ({
|
|
|
|
|
companyProjectIdx: index("project_workspaces_company_project_idx").on(table.companyId, table.projectId),
|
|
|
|
|
projectPrimaryIdx: index("project_workspaces_project_primary_idx").on(table.projectId, table.isPrimary),
|
|
|
|
|
}),
|
|
|
|
|
);
|