mirror of
https://github.com/Hackdex-App/hackdex-website.git
synced 2026-04-26 00:12:48 -05:00
5 lines
231 B
SQL
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';
|