Add patches_download_permission to hacks table

This commit is contained in:
Jared Schoeny 2025-12-23 23:17:43 -10:00
parent c220bbf98e
commit 2af8752b1d

View File

@ -0,0 +1,4 @@
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';