41 lines
1.8 KiB
SQL
41 lines
1.8 KiB
SQL
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
/*!40101 SET NAMES utf8 */;
|
|
|
|
--
|
|
-- Structure de la table `char_exp`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `char_exp`;
|
|
CREATE TABLE IF NOT EXISTS `char_exp` (
|
|
`charid` int(10) unsigned NOT NULL,
|
|
`mode` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
|
`war` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`mnk` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`whm` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`blm` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`rdm` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`thf` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`pld` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`drk` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`bst` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`brd` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`rng` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`sam` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`nin` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`drg` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`smn` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`blu` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`cor` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`pup` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`dnc` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`sch` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`geo` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`run` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
`merits` tinyint(2) unsigned NOT NULL DEFAULT '0',
|
|
`limits` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`charid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci AVG_ROW_LENGTH=85;
|