Mirror of https://github.com/roostorg/coop
github.com/roostorg/coop
1import { type Generated, type GeneratedAlways } from 'kysely';
2
3export type ApiKeyServicePg = {
4 'public.api_keys': {
5 id: Generated<string>;
6 org_id: string;
7 key_hash: string;
8 name: string;
9 description: string | null;
10 is_active: Generated<boolean>;
11 created_at: GeneratedAlways<Date>;
12 updated_at: Generated<Date>;
13 last_used_at: Date | null;
14 created_by: string | null;
15 };
16};