mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-20 04:20:38 +09:00
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
|
|
import { pgTable, uuid, text, timestamp, jsonb, uniqueIndex, index } from "drizzle-orm/pg-core";
|
||
|
|
import { companies } from "./companies.js";
|
||
|
|
|
||
|
|
export const principalPermissionGrants = pgTable(
|
||
|
|
"principal_permission_grants",
|
||
|
|
{
|
||
|
|
id: uuid("id").primaryKey().defaultRandom(),
|
||
|
|
companyId: uuid("company_id").notNull().references(() => companies.id),
|
||
|
|
principalType: text("principal_type").notNull(),
|
||
|
|
principalId: text("principal_id").notNull(),
|
||
|
|
permissionKey: text("permission_key").notNull(),
|
||
|
|
scope: jsonb("scope").$type<Record<string, unknown> | null>(),
|
||
|
|
grantedByUserId: text("granted_by_user_id"),
|
||
|
|
createdAt: timestamp("created_at", { withTimezone: true }).notNull().defaultNow(),
|
||
|
|
updatedAt: timestamp("updated_at", { withTimezone: true }).notNull().defaultNow(),
|
||
|
|
},
|
||
|
|
(table) => ({
|
||
|
|
uniqueGrantIdx: uniqueIndex("principal_permission_grants_unique_idx").on(
|
||
|
|
table.companyId,
|
||
|
|
table.principalType,
|
||
|
|
table.principalId,
|
||
|
|
table.permissionKey,
|
||
|
|
),
|
||
|
|
companyPermissionIdx: index("principal_permission_grants_company_permission_idx").on(
|
||
|
|
table.companyId,
|
||
|
|
table.permissionKey,
|
||
|
|
),
|
||
|
|
}),
|
||
|
|
);
|