shop enumeration first pass

This commit is contained in:
wish
2022-11-21 09:27:29 +11:00
parent 6dbb702665
commit 9103debe99
4 changed files with 240 additions and 200 deletions

18
patch-schema/gacha-db.sql Normal file
View File

@@ -0,0 +1,18 @@
BEGIN;
DROP TABLE IF EXISTS public.gacha_shop;
CREATE TABLE IF NOT EXISTS public.gacha_shop(
id serial PRIMARY KEY,
min_gr integer,
min_hr integer,
name text,
link1 text,
link2 text,
link3 text,
icon integer,
type integer,
hide boolean
);
END;