MCPcopy
hub / github.com/dittofeed/dittofeed / Database

Interface Database

examples/supabase/app/database.types.ts:9–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7 | Json[];
8
9export interface Database {
10 public: {
11 Tables: {
12 profiles: {
13 Row: {
14 id: string;
15 updated_at: string | null;
16 username: string | null;
17 full_name: string | null;
18 avatar_url: string | null;
19 website: string | null;
20 };
21 Insert: {
22 id: string;
23 updated_at?: string | null;
24 username?: string | null;
25 full_name?: string | null;
26 avatar_url?: string | null;
27 website?: string | null;
28 };
29 Update: {
30 id?: string;
31 updated_at?: string | null;
32 username?: string | null;
33 full_name?: string | null;
34 avatar_url?: string | null;
35 website?: string | null;
36 };
37 };
38 };
39 Views: {
40 [_ in never]: never;
41 };
42 Functions: {
43 [_ in never]: never;
44 };
45 Enums: {
46 [_ in never]: never;
47 };
48 };
49}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected