Create black_market_armor_set_Table_Creation.sql

This commit is contained in:
Manmadedrummer
2024-07-07 13:24:53 -04:00
committed by GitHub
parent d1272eff08
commit 81befd3d60

View File

@@ -0,0 +1,8 @@
CREATE TABLE `black_market_armor_sets` (
`class` INT NOT NULL,
`item_id` INT NOT NULL,
`name` VARCHAR(255) NOT NULL,
`item_set_id` INT NOT NULL,
`set_name` VARCHAR(255) NOT NULL,
PRIMARY KEY (`item_id`)
);