forked from LandSandBoat/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchar_jobs.sql
41 lines (37 loc) · 1.67 KB
/
char_jobs.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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=utf8 AVG_ROW_LENGTH=95;