isl-api/docker/docker-entrypoint-initdb.d/schema.sql

12 lines
328 B
SQL

CREATE TABLE powerItem (
id uuid PRIMARY KEY DEFAULT gen_random_uuid(),
itemType int NOT NULL,
iconURL text NOT NULL,
itemName text NOT NULL,
minItemPower integer NOT NULL,
maxItemPower integer NOT NULL,
rarity int NOT NULL,
origin text NOT NULL,
tooltip text NULL,
isEventItem boolean
)