mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-17 01:15:42 +01:00
Paperdata values discovery
This commit is contained in:
23
schemas/patch-schema/paper-data.sql
Normal file
23
schemas/patch-schema/paper-data.sql
Normal file
@@ -0,0 +1,23 @@
|
||||
BEGIN;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS paper_data_gifts (
|
||||
id serial PRIMARY KEY,
|
||||
gift_id integer,
|
||||
item_id integer,
|
||||
unk0 integer,
|
||||
unk1 integer,
|
||||
chance integer
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS paper_data (
|
||||
id serial PRIMARY KEY,
|
||||
paper_type integer,
|
||||
paper_id integer,
|
||||
option1 integer,
|
||||
option2 integer,
|
||||
option3 integer,
|
||||
option4 integer,
|
||||
option5 integer
|
||||
);
|
||||
|
||||
END;
|
||||
Reference in New Issue
Block a user