mirror of
https://forgejo.merr.is/annika/isl-api.git
synced 2025-12-12 15:37:56 -05:00
Mostly Initial Setup And Testing Stuff
This commit is contained in:
parent
8c147b23d8
commit
d52d9968ba
12 changed files with 502 additions and 0 deletions
12
sql/powerItem/schema.sql
Normal file
12
sql/powerItem/schema.sql
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
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
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue