mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-14 07:55:33 +01:00
initial warehouse concept
This commit is contained in:
49
patch-schema/warehouse.sql
Normal file
49
patch-schema/warehouse.sql
Normal file
@@ -0,0 +1,49 @@
|
||||
BEGIN;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS public.warehouse (
|
||||
character_id integer PRIMARY KEY,
|
||||
item0 bytea,
|
||||
item1 bytea,
|
||||
item2 bytea,
|
||||
item3 bytea,
|
||||
item4 bytea,
|
||||
item5 bytea,
|
||||
item6 bytea,
|
||||
item7 bytea,
|
||||
item8 bytea,
|
||||
item9 bytea,
|
||||
item10 bytea,
|
||||
item0name text,
|
||||
item1name text,
|
||||
item2name text,
|
||||
item3name text,
|
||||
item4name text,
|
||||
item5name text,
|
||||
item6name text,
|
||||
item7name text,
|
||||
item8name text,
|
||||
item9name text,
|
||||
equip0 bytea,
|
||||
equip1 bytea,
|
||||
equip2 bytea,
|
||||
equip3 bytea,
|
||||
equip4 bytea,
|
||||
equip5 bytea,
|
||||
equip6 bytea,
|
||||
equip7 bytea,
|
||||
equip8 bytea,
|
||||
equip9 bytea,
|
||||
equip10 bytea,
|
||||
equip0name text,
|
||||
equip1name text,
|
||||
equip2name text,
|
||||
equip3name text,
|
||||
equip4name text,
|
||||
equip5name text,
|
||||
equip6name text,
|
||||
equip7name text,
|
||||
equip8name text,
|
||||
equip9name text
|
||||
);
|
||||
|
||||
END;
|
||||
Reference in New Issue
Block a user