mirror of
https://forgejo.merr.is/annika/isl-api.git
synced 2025-12-11 11:02:03 -05:00
12 lines
328 B
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
|
|
)
|