landsandboat/sql/char_jobs.sql

40 lines
1.7 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_jobs`
--
DROP TABLE IF EXISTS `char_jobs`;
CREATE TABLE IF NOT EXISTS `char_jobs` (
`charid` int(10) unsigned NOT NULL,
`unlocked` int(10) unsigned NOT NULL DEFAULT '126',
`genkai` tinyint(2) unsigned NOT NULL DEFAULT '50',
`war` tinyint(2) unsigned NOT NULL DEFAULT '1',
`mnk` tinyint(2) unsigned NOT NULL DEFAULT '1',
`whm` tinyint(2) unsigned NOT NULL DEFAULT '1',
`blm` tinyint(2) unsigned NOT NULL DEFAULT '1',
`rdm` tinyint(2) unsigned NOT NULL DEFAULT '1',
`thf` tinyint(2) unsigned NOT NULL DEFAULT '1',
`pld` tinyint(2) unsigned NOT NULL DEFAULT '0',
`drk` tinyint(2) unsigned NOT NULL DEFAULT '0',
`bst` tinyint(2) unsigned NOT NULL DEFAULT '0',
`brd` tinyint(2) unsigned NOT NULL DEFAULT '0',
`rng` tinyint(2) unsigned NOT NULL DEFAULT '0',
`sam` tinyint(2) unsigned NOT NULL DEFAULT '0',
`nin` tinyint(2) unsigned NOT NULL DEFAULT '0',
`drg` tinyint(2) unsigned NOT NULL DEFAULT '0',
`smn` tinyint(2) unsigned NOT NULL DEFAULT '0',
`blu` tinyint(2) unsigned NOT NULL DEFAULT '0',
`cor` tinyint(2) unsigned NOT NULL DEFAULT '0',
`pup` tinyint(2) unsigned NOT NULL DEFAULT '0',
`dnc` tinyint(2) unsigned NOT NULL DEFAULT '0',
`sch` tinyint(2) unsigned NOT NULL DEFAULT '0',
`geo` tinyint(2) unsigned NOT NULL DEFAULT '0',
`run` tinyint(2) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`charid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci AVG_ROW_LENGTH=95;