Difference between revisions of "Account (Database Table)"

From SWGANH Wiki
Jump to: navigation, search
(Table Structure)
m (Table Create Script)
 
(One intermediate revision by one other user not shown)
Line 33: Line 33:
 
|align="left"|loggedin||int(1)||align="center"| ||align="center"| ||NO|| ||0||Logged in.
 
|align="left"|loggedin||int(1)||align="center"| ||align="center"| ||NO|| ||0||Logged in.
 
|- align="center" style="background-color:#F1F1F1;"
 
|- align="center" style="background-color:#F1F1F1;"
|align="left"|authenticated||tinyint(1)||align="center"| ||align="center"| ||YES|| || ||Authenicated with Login Server.
+
|align="left"|authenticated||tinyint(1)||align="center"| ||align="center"| ||YES|| ||0||Authenicated with Login Server.
 
|- align="center"  
 
|- align="center"  
 
|align="left"|characters_allowed||tinyint(3)||align="center"|[[Image:Symbol OK.png|10px]]||align="center"| ||NO|| ||2||Characters allowed per galaxy.
 
|align="left"|characters_allowed||tinyint(3)||align="center"|[[Image:Symbol OK.png|10px]]||align="center"| ||NO|| ||2||Characters allowed per galaxy.
 
|- align="center" style="background-color:#F1F1F1;"
 
|- align="center" style="background-color:#F1F1F1;"
|align="left"|session_key||varchar(32)||align="center"| ||align="center"| ||NO|| ||0||Launcher session key
+
|align="left"|session_key||varchar(32)||align="center"| ||align="center"| ||NO|| || ||Launcher session key
 
|-
 
|-
 
|}
 
|}
Line 77: Line 77:
 
   PRIMARY KEY  (`account_id`),
 
   PRIMARY KEY  (`account_id`),
 
   UNIQUE KEY `username` (`username`)
 
   UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB EFAULT CHARSET=utf8;
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
</pre>
 
</pre>
  

Latest revision as of 18:06, 9 May 2010

Database Table - Accounts

SWGANH Wiki is a repository of Star Wars Galaxies Developer information. This site is only meant to be used by SWGANH Developer team.

Table Structure

Field Type Unsigned Autoinc Null Key Default Value Description
account_id bigint(20) Symbol OK.png Symbol OK.png NO Primary Null Account ID
username char(32) NO Unique Account Username
password char(32) NO Account Password (MD5)
station_id bigint(20) Symbol OK.png NO Account STATION_ID
csr tinyint(1) NO Account flag (CSR)
banned tinyint(1) NO Account flag (Banned)
email char(64) NO Account email.
joindate datetime NO 0000-00-00 00:00:00 Date/Time of account creation.
lastlogin timestamp YES NULL Date/Time of last login.
active tinyint(1) YES NULL User account active.
loggedin int(1) NO 0 Logged in.
authenticated tinyint(1) YES 0 Authenicated with Login Server.
characters_allowed tinyint(3) Symbol OK.png NO 2 Characters allowed per galaxy.
session_key varchar(32) NO Launcher session key

Related Tags

75% This document is nearing completion.

Database This document relates to the SWGANH Database Schema.

DB Table This document relates to the SWGANH Database Schema.


Table Create Script

DROP TABLE IF EXISTS `account`;
CREATE TABLE `account` (
  `account_id` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Account ID',
  `username` char(32) NOT NULL default '' COMMENT 'Account username',
  `password` char(64) NOT NULL COMMENT 'Account password',
  `station_id` bigint(20) unsigned NOT NULL default '0' COMMENT 'Account STATION_ID',
  `csr` tinyint(1) NOT NULL default '0' COMMENT 'Account - CSR Flag',
  `banned` tinyint(1) NOT NULL default '0' COMMENT 'Account - Banned Status',
  `email` char(64) NOT NULL default '' COMMENT 'Account - User email',
  `joindate` datetime NOT NULL default '0000-00-00 00:00:00' COMMENT 'Account - Join Date',
  `lastlogin` timestamp NULL default NULL COMMENT 'Account - Last Login Timestamp',
  `active` tinyint(1) default NULL COMMENT 'Account - Active Flag',
  `loggedin` int(1) NOT NULL default '0' COMMENT 'Account - Cluster id account is logged into',
  `authenticated` tinyint(1) NOT NULL default '0' COMMENT 'Account - Authenticated Status',
  `characters_allowed` tinyint(3) unsigned NOT NULL default '2',
  `session_key` varchar(32) default NULL,
  PRIMARY KEY  (`account_id`),
  UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Table Describe

mysql> describe account;
+--------------------+---------------------+------+-----+---------------------+----------------+
| Field              | Type                | Null | Key | Default             | Extra          |
+--------------------+---------------------+------+-----+---------------------+----------------+
| account_id         | bigint(20) unsigned | NO   | PRI | NULL                | auto_increment |
| username           | char(32)            | NO   | UNI |                     |                |
| password           | char(64)            | NO   |     | NULL                |                |
| station_id         | bigint(20) unsigned | NO   |     | 0                   |                |
| csr                | tinyint(1)          | NO   |     | 0                   |                |
| banned             | tinyint(1)          | NO   |     | 0                   |                |
| email              | char(64)            | NO   |     |                     |                |
| joindate           | datetime            | NO   |     | 0000-00-00 00:00:00 |                |
| lastlogin          | timestamp           | YES  |     | NULL                |                |
| active             | tinyint(1)          | YES  |     | NULL                |                |
| loggedin           | int(1)              | NO   |     | 0                   |                |
| authenticated      | tinyint(1)          | NO   |     | 0                   |                |
| characters_allowed | tinyint(3) unsigned | NO   |     | 2                   |                |
| session_key        | varchar(32)         | YES  |     | NULL                |                |
+--------------------+---------------------+------+-----+---------------------+----------------+
14 rows in set (0.01 sec)