Biography faction (Database Table)
From SWGANH Wiki
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
|
Related Tags
|
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)