suna/backend/supabase/migrations/20250830014327_rem_template...

9 lines
233 B
PL/PgSQL

BEGIN;
-- Remove the template_share_links table as we now use direct template ID URLs for sharing
-- This simplifies the sharing system and removes unnecessary complexity
DROP TABLE IF EXISTS template_share_links CASCADE;
COMMIT;