Merged with released L2J-Unity files.
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
DROP TABLE IF EXISTS `character_subclasses`;
|
||||
CREATE TABLE IF NOT EXISTS `character_subclasses` (
|
||||
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`class_id` int(2) NOT NULL DEFAULT 0,
|
||||
`exp` bigint(20) NOT NULL DEFAULT 0,
|
||||
`sp` bigint(10) NOT NULL DEFAULT 0,
|
||||
`vitality_points` int(10) NOT NULL DEFAULT '140000',
|
||||
`level` int(2) NOT NULL DEFAULT 40,
|
||||
`class_index` int(1) NOT NULL DEFAULT 0,
|
||||
`dual_class` BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
PRIMARY KEY (`charId`,`class_id`)
|
||||
DROP TABLE IF EXISTS `character_subclasses`;
|
||||
CREATE TABLE IF NOT EXISTS `character_subclasses` (
|
||||
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`class_id` int(2) NOT NULL DEFAULT 0,
|
||||
`exp` bigint(20) NOT NULL DEFAULT 0,
|
||||
`sp` bigint(10) NOT NULL DEFAULT 0,
|
||||
`level` int(2) NOT NULL DEFAULT 40,
|
||||
`vitality_points` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`class_index` int(1) NOT NULL DEFAULT 0,
|
||||
`dual_class` BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
PRIMARY KEY (`charId`,`class_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user