2012-10-25 15:15:09 +00:00
|
|
|
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_profile`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
DROP TABLE IF EXISTS `char_profile`;
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `char_profile` (
|
|
|
|
|
`charid` int(10) unsigned NOT NULL,
|
|
|
|
|
`rank_points` int(10) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`rank_sandoria` tinyint(2) unsigned NOT NULL DEFAULT '1',
|
|
|
|
|
`rank_bastok` tinyint(2) unsigned NOT NULL DEFAULT '1',
|
|
|
|
|
`rank_windurst` tinyint(2) unsigned NOT NULL DEFAULT '1',
|
|
|
|
|
`fame_sandoria` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`fame_bastok` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`fame_windurst` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`fame_norg` smallint(5) unsigned NOT NULL DEFAULT '0',
|
2014-01-25 15:44:24 +00:00
|
|
|
`fame_jeuno` smallint(5) unsigned NOT NULL DEFAULT '0',
|
2016-07-09 10:13:36 -07:00
|
|
|
`fame_aby_konschtat` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`fame_aby_tahrongi` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`fame_aby_latheine` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`fame_aby_misareaux` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`fame_aby_vunkerl` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`fame_aby_attohwa` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`fame_aby_altepa` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`fame_aby_grauberg` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`fame_aby_uleguerand` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`fame_adoulin` smallint(5) unsigned NOT NULL DEFAULT '0',
|
2021-02-26 17:39:59 -05:00
|
|
|
`unity_leader` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
2012-10-25 15:15:09 +00:00
|
|
|
PRIMARY KEY (`charid`)
|
2024-01-04 18:25:12 +00:00
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|