mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-17 03:10:38 +09:00
30 lines
1.3 KiB
TypeScript
30 lines
1.3 KiB
TypeScript
|
|
import { pgTable, uuid, text, timestamp, jsonb, index, uniqueIndex } from "drizzle-orm/pg-core";
|
||
|
|
import { companies } from "./companies.js";
|
||
|
|
|
||
|
|
export const invites = pgTable(
|
||
|
|
"invites",
|
||
|
|
{
|
||
|
|
id: uuid("id").primaryKey().defaultRandom(),
|
||
|
|
companyId: uuid("company_id").references(() => companies.id),
|
||
|
|
inviteType: text("invite_type").notNull().default("company_join"),
|
||
|
|
tokenHash: text("token_hash").notNull(),
|
||
|
|
allowedJoinTypes: text("allowed_join_types").notNull().default("both"),
|
||
|
|
defaultsPayload: jsonb("defaults_payload").$type<Record<string, unknown> | null>(),
|
||
|
|
expiresAt: timestamp("expires_at", { withTimezone: true }).notNull(),
|
||
|
|
invitedByUserId: text("invited_by_user_id"),
|
||
|
|
revokedAt: timestamp("revoked_at", { withTimezone: true }),
|
||
|
|
acceptedAt: timestamp("accepted_at", { withTimezone: true }),
|
||
|
|
createdAt: timestamp("created_at", { withTimezone: true }).notNull().defaultNow(),
|
||
|
|
updatedAt: timestamp("updated_at", { withTimezone: true }).notNull().defaultNow(),
|
||
|
|
},
|
||
|
|
(table) => ({
|
||
|
|
tokenHashUniqueIdx: uniqueIndex("invites_token_hash_unique_idx").on(table.tokenHash),
|
||
|
|
companyInviteStateIdx: index("invites_company_invite_state_idx").on(
|
||
|
|
table.companyId,
|
||
|
|
table.inviteType,
|
||
|
|
table.revokedAt,
|
||
|
|
table.expiresAt,
|
||
|
|
),
|
||
|
|
}),
|
||
|
|
);
|