Files
hackdex-website/supabase/migrations/20260731233000_patch_format.sql
Jared Schoeny c7c88d1840
Some checks failed
Deploy Supabase Migrations to Production / migrate (push) Has been cancelled
Xdelta patching (#71)
* 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
2026-08-03 10:56:45 -06:00

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';