mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-13 15:34:38 +01:00
49 lines
896 B
PL/PgSQL
49 lines
896 B
PL/PgSQL
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; |