mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-14 07:55:33 +01:00
shop enumeration first pass
This commit is contained in:
18
patch-schema/gacha-db.sql
Normal file
18
patch-schema/gacha-db.sql
Normal 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;
|
||||
Reference in New Issue
Block a user