diff --git a/types/database.types.ts b/types/database.types.ts index a3c4b7876..18c518fb0 100644 --- a/types/database.types.ts +++ b/types/database.types.ts @@ -3843,44 +3843,6 @@ export type Database = { }, ]; }; - youtube_tokens: { - Row: { - access_token: string; - artist_account_id: string; - created_at: string; - expires_at: string; - id: string; - refresh_token: string | null; - updated_at: string; - }; - Insert: { - access_token: string; - artist_account_id: string; - created_at?: string; - expires_at: string; - id?: string; - refresh_token?: string | null; - updated_at?: string; - }; - Update: { - access_token?: string; - artist_account_id?: string; - created_at?: string; - expires_at?: string; - id?: string; - refresh_token?: string | null; - updated_at?: string; - }; - Relationships: [ - { - foreignKeyName: "youtube_tokens_artist_account_id_fkey"; - columns: ["artist_account_id"]; - isOneToOne: true; - referencedRelation: "accounts"; - referencedColumns: ["id"]; - }, - ]; - }; }; Views: { [_ in never]: never;