Biography faction (Database Table)

From SWGANH Wiki
Jump to: navigation, search

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)