a tool for shared writing and social publishing

add archived column to permission tokens on home table

+4
+3
supabase/database.types.ts
··· 727 } 728 permission_token_on_homepage: { 729 Row: { 730 created_at: string 731 identity: string 732 token: string 733 } 734 Insert: { 735 created_at?: string 736 identity: string 737 token: string 738 } 739 Update: { 740 created_at?: string 741 identity?: string 742 token?: string
··· 727 } 728 permission_token_on_homepage: { 729 Row: { 730 + archived: boolean | null 731 created_at: string 732 identity: string 733 token: string 734 } 735 Insert: { 736 + archived?: boolean | null 737 created_at?: string 738 identity: string 739 token: string 740 } 741 Update: { 742 + archived?: boolean | null 743 created_at?: string 744 identity?: string 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;