feat: setup basic router interactions

This commit is contained in:
Henry
2026-01-26 14:45:40 +00:00
parent 9415daecd3
commit 090028d827
6 changed files with 623 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ export const workspaceRoles = pgTable(
"workspace_roles",
{
id: bigserial("id", { mode: "number" }).primaryKey(),
publicId: varchar("publicId", { length: 12 }).notNull().unique(),
workspaceId: bigint("workspaceId", { mode: "number" })
.notNull()
.references(() => workspaces.id, { onDelete: "cascade" }),