2024-01-11 01:38:37 -05:00
|
|
|
/* init_order = 3 */
|
|
|
|
|
2024-01-11 04:28:26 -05:00
|
|
|
create type organization_invitation_status as enum ('Pending', 'Accepted', 'Expired', 'Revoked');
|
|
|
|
|
2024-01-11 01:38:37 -05:00
|
|
|
/** The invitation entry defined in RFC 0003. It stores the invitation information for a user to join an organization. */
|
|
|
|
create table organization_invitations (
|
|
|
|
tenant_id varchar(21) not null
|
|
|
|
references tenants (id) on update cascade on delete cascade,
|
|
|
|
/** The unique identifier of the invitation. */
|
|
|
|
id varchar(21) not null,
|
|
|
|
/** The user ID who sent the invitation. */
|
2024-01-25 07:00:56 -05:00
|
|
|
inviter_id varchar(21)
|
|
|
|
references users (id) on update cascade on delete cascade,
|
2024-01-11 01:38:37 -05:00
|
|
|
/** The email address or other identifier of the invitee. */
|
|
|
|
invitee varchar(256) not null,
|
|
|
|
/** The user ID of who accepted the invitation. */
|
|
|
|
accepted_user_id varchar(21)
|
|
|
|
references users (id) on update cascade on delete cascade,
|
|
|
|
/** The ID of the organization to which the invitee is invited. */
|
2024-01-25 07:00:56 -05:00
|
|
|
organization_id varchar(21) not null
|
|
|
|
references organizations (id) on update cascade on delete cascade,
|
2024-01-11 01:38:37 -05:00
|
|
|
/** The status of the invitation. */
|
2024-01-11 04:28:26 -05:00
|
|
|
status organization_invitation_status not null,
|
2024-01-11 01:38:37 -05:00
|
|
|
/** The time when the invitation was created. */
|
|
|
|
created_at timestamptz not null default (now()),
|
|
|
|
/** The time when the invitation status was last updated. */
|
|
|
|
updated_at timestamptz not null default (now()),
|
|
|
|
/** The time when the invitation expires. */
|
|
|
|
expires_at timestamptz not null,
|
2024-01-25 07:00:56 -05:00
|
|
|
primary key (id)
|
2024-01-11 01:38:37 -05:00
|
|
|
);
|
2024-01-11 04:28:26 -05:00
|
|
|
|
|
|
|
-- Ensure there is only one pending invitation for a given invitee and organization.
|
|
|
|
create unique index organization_invitations__invitee_organization_id
|
|
|
|
on organization_invitations (tenant_id, invitee, organization_id)
|
|
|
|
where status = 'Pending';
|