mirror of
https://github.com/Hackdex-App/hackdex-website.git
synced 2026-08-22 16:44:33 -05:00
Some checks failed
Deploy Supabase Migrations to Production / migrate (push) Has been cancelled
* Add xdelta patch support * Fix potential race on reupload to new format + update typings * Fix waiting too long to call showSaveFilePicker * Allow seeing patch format in version history
5 lines
172 B
SQL
5 lines
172 B
SQL
create type public."Patch Format" as enum ('bps', 'xdelta');
|
|
|
|
alter table if exists public.patches
|
|
add column if not exists format "Patch Format" not null default 'bps';
|