diff --git a/supabase/database.types.ts b/supabase/database.types.ts index 93efcbe3..a27007c7 100644 --- a/supabase/database.types.ts +++ b/supabase/database.types.ts @@ -727,16 +727,19 @@ export type Database = { } permission_token_on_homepage: { Row: { + archived: boolean | null created_at: string identity: string token: string } Insert: { + archived?: boolean | null created_at?: string identity: string token: string } Update: { + archived?: boolean | null created_at?: string identity?: string token?: string diff --git a/supabase/migrations/20251119191717_add_archived_to_permission_tokens_on_homepage.sql b/supabase/migrations/20251119191717_add_archived_to_permission_tokens_on_homepage.sql new file mode 100644 index 00000000..c5ad7ec9 --- /dev/null +++ b/supabase/migrations/20251119191717_add_archived_to_permission_tokens_on_homepage.sql @@ -0,0 +1 @@ +alter table "public"."permission_token_on_homepage" add column "archived" boolean;