mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-14 07:55:33 +01:00
shop enumeration pass 2
This commit is contained in:
@@ -2,7 +2,7 @@ BEGIN;
|
||||
|
||||
DROP TABLE IF EXISTS public.gacha_shop;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS public.gacha_shop(
|
||||
CREATE TABLE IF NOT EXISTS public.gacha_shop (
|
||||
id serial PRIMARY KEY,
|
||||
min_gr integer,
|
||||
min_hr integer,
|
||||
@@ -15,4 +15,15 @@ CREATE TABLE IF NOT EXISTS public.gacha_shop(
|
||||
hide boolean
|
||||
);
|
||||
|
||||
DROP TABLE IF EXISTS public.fpoint_items;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS public.fpoint_items (
|
||||
id serial PRIMARY KEY,
|
||||
item_type integer,
|
||||
item_id integer,
|
||||
quantity integer,
|
||||
fpoints integer,
|
||||
trade_type integer
|
||||
);
|
||||
|
||||
END;
|
||||
Reference in New Issue
Block a user