Project:
Pathway of the Damned
Code Location:
git://github.com/Marforius/Pathway-of-the-Damned.gitmaster
logon_structure.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* SQLyog Community Edition- MySQL GUI v6.56 MySQL - 5.0.51a-24+lenny1 : Database - arclogon ********************************************************************* */ /*!40101 SET NAMES utf8 */; /*!40101 SET SQL_MODE=''*/; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*Table structure for table `accounts` */ DROP TABLE IF EXISTS `accounts`; CREATE TABLE `accounts` ( `acct` int(10) unsigned NOT NULL auto_increment COMMENT 'Unique ID', `login` varchar(32) collate utf8_unicode_ci NOT NULL COMMENT 'Login username', `password` varchar(32) collate utf8_unicode_ci NOT NULL COMMENT 'Login password', `encrypted_password` varchar(42) collate utf8_unicode_ci NOT NULL default '', `gm` varchar(32) collate utf8_unicode_ci NOT NULL default '' COMMENT 'Game permissions', `banned` int(10) unsigned NOT NULL, `lastlogin` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Last login timestamp', `lastip` varchar(16) collate utf8_unicode_ci NOT NULL default '' COMMENT 'Last remote address', `email` varchar(64) collate utf8_unicode_ci NOT NULL default '' COMMENT 'Contact e-mail address', `flags` tinyint(3) unsigned NOT NULL default '0' COMMENT 'Client flags', `forceLanguage` varchar(5) collate utf8_unicode_ci NOT NULL default 'enUS', `muted` int(30) NOT NULL default '0', `banreason` varchar(255) collate utf8_unicode_ci default NULL, PRIMARY KEY (`acct`), UNIQUE KEY `a` (`login`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Account Information'; /*Data for the table `accounts` */ LOCK TABLES `accounts` WRITE; UNLOCK TABLES; /*Table structure for table `ipbans` */ DROP TABLE IF EXISTS `ipbans`; CREATE TABLE `ipbans` ( `ip` varchar(20) collate utf8_unicode_ci NOT NULL, `expire` int(10) NOT NULL COMMENT 'Expiry time (s)', `banreason` varchar(255) collate utf8_unicode_ci default NULL, PRIMARY KEY (`ip`), UNIQUE KEY `a` (`ip`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='IPBanner'; /*Data for the table `ipbans` */ LOCK TABLES `ipbans` WRITE; UNLOCK TABLES; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
