hackdex-website/supabase/migrations/20251224091321_add_hack_download_permission_field.sql
2025-12-23 23:17:43 -10:00

5 lines
231 B
SQL

create type public."Patches Download Permission" as enum ('None', 'Current', 'All');
alter table if exists public.hacks
add column if not exists patches_download_permission "Patches Download Permission" not null default 'None';