Store player henna potential at character_potens table.

This commit is contained in:
MobiusDevelopment
2022-05-29 12:37:24 +00:00
parent c08bd07361
commit e285e8b2f0
4 changed files with 110 additions and 54 deletions

View File

@@ -1,8 +1,8 @@
DROP TABLE IF EXISTS `character_potens`;
CREATE TABLE IF NOT EXISTS `character_potens` (
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
`enchant_level` INT,
`enchant_exp` INT,
`poten_id` INT,
PRIMARY KEY (`charId`)
`enchant_level` INT NOT NULL DEFAULT 0,
`enchant_exp` INT NOT NULL DEFAULT 0,
`poten_id` INT NOT NULL DEFAULT 0,
PRIMARY KEY (`charId`,`poten_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;