isl-api/sql/powerItem/schema.sql

13 lines
328 B
MySQL
Raw Normal View History

2024-01-26 17:11:42 -05:00
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
)