Difference between revisions of "Biography faction (Database Table)"

From SWGANH Wiki
Jump to: navigation, search
 
Line 13: Line 13:
 
||'''Field'''||'''Type'''||'''Unsigned'''||'''Autoinc'''||'''Null'''||'''Key'''||'''Default Value'''||'''Description'''
 
||'''Field'''||'''Type'''||'''Unsigned'''||'''Autoinc'''||'''Null'''||'''Key'''||'''Default Value'''||'''Description'''
 
|- align="center"  
 
|- align="center"  
|align="left"|faction|| ||align="center"|[[Image:Symbol OK.png|10px]]||align="center"|||NO||Primary||NULL||  
+
|align="left"|faction||varchar(45)||align="center"| ||align="center"| ||NO||Primary||NULL||  
|- align="center" style="background-color:#F1F1F1;"
+
|| || ||align="center"| ||align="center"| || || || ||
+
|-
+
 
|}
 
|}
 
|}
 
|}

Latest revision as of 00:30, 13 March 2010

Database Table - biography_faction

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
faction varchar(45) NO Primary NULL

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 `biography_faction`;
CREATE TABLE `biography_faction` (
  `faction` varchar(45) NOT NULL,
  PRIMARY KEY  (`faction`(1))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=REDUNDANT;

Table Describe

mysql> describe biography_faction;
+---------+-------------+------+-----+---------+-------+
| Field   | Type        | Null | Key | Default | Extra |
+---------+-------------+------+-----+---------+-------+
| faction | varchar(45) | NO   | PRI | NULL    |       |
+---------+-------------+------+-----+---------+-------+
1 row in set (0.09 sec)