Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.56 KB | None | 0 0
  1. accounts  CREATE TABLE `accounts` (                                                                                        
  2.             `acct` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Unique ID',                                          
  3.             `login` varchar(32) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Login username',                                
  4.             `password` varchar(32) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Login password',                              
  5.             `encrypted_password` varchar(64) COLLATE utf8_unicode_ci NOT NULL,                                            
  6.             `gm` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'Game permissions',                      
  7.             `banned` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Account Standing',                                  
  8.             `lastlogin` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Last login timestamp',                  
  9.             `lastip` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'Last remote address',                
  10.             `email` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'Contact e-mail address',              
  11.             `flags` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Client flags',                                      
  12.             `forceLanguage` varchar(5) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'enUS',                                    
  13.             `muted` int(30) NOT NULL DEFAULT '0',                                                                          
  14.             `banreason` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,                                                
  15.             `reward_points` int(11) DEFAULT NULL,                                                                          
  16.             `votes` int(20) DEFAULT NULL,                                                                                  
  17.             `votes2` int(20) DEFAULT NULL,                                                                                
  18.             `votes3` int(20) DEFAULT NULL,                                                                                
  19.             PRIMARY KEY (`acct`),                                                                                          
  20.             UNIQUE KEY `a` (`login`)                                                                                      
  21.           ) ENGINE=MyISAM AUTO_INCREMENT=23002 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Account Information'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement