a tool for shared writing and social publishing

add archived column to permission tokens on home table

+4
+3
supabase/database.types.ts
··· 727 727 } 728 728 permission_token_on_homepage: { 729 729 Row: { 730 + archived: boolean | null 730 731 created_at: string 731 732 identity: string 732 733 token: string 733 734 } 734 735 Insert: { 736 + archived?: boolean | null 735 737 created_at?: string 736 738 identity: string 737 739 token: string 738 740 } 739 741 Update: { 742 + archived?: boolean | null 740 743 created_at?: string 741 744 identity?: string 742 745 token?: string
+1
supabase/migrations/20251119191717_add_archived_to_permission_tokens_on_homepage.sql
··· 1 + alter table "public"."permission_token_on_homepage" add column "archived" boolean;