Addition of purge system.
Contributed by iDesy.
This commit is contained in:
8
L2J_Mobius_Essence_5.0_Sylph/dist/db_installer/sql/game/character_purge.sql
vendored
Normal file
8
L2J_Mobius_Essence_5.0_Sylph/dist/db_installer/sql/game/character_purge.sql
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
DROP TABLE IF EXISTS `character_purge`;
|
||||
CREATE TABLE IF NOT EXISTS `character_purge` (
|
||||
`charId` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`category` int(3) UNSIGNED NOT NULL DEFAULT 0,
|
||||
`points` int(10) UNSIGNED NOT NULL DEFAULT 0,
|
||||
`keys` int(10) UNSIGNED NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`charId`,`category`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
Reference in New Issue
Block a user