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

From SWGANH Wiki
Jump to: navigation, search
(Table Create Script)
(Table Create Script)
Line 36: Line 36:
 
==Table Create Script==
 
==Table Create Script==
 
<pre>
 
<pre>
/* Formatted on 2007/06/15 01:26 (MySQL Formatter v5.34) */
 
 
CREATE TABLE `biography_planet` (
 
CREATE TABLE `biography_planet` (
 
   `id` int(10) unsigned NOT NULL auto_increment,
 
   `id` int(10) unsigned NOT NULL auto_increment,
Line 42: Line 41:
 
   PRIMARY KEY  (`id`)
 
   PRIMARY KEY  (`id`)
 
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
 
 
 
</pre>
 
</pre>
  

Revision as of 00:26, 15 June 2007

Database Table - biography_planet

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
Symbol OK.png Symbol OK.png

Related Tags

25% This document has been partially completed.

Database This document relates to the SWGANH Database Schema.

DB Table This document relates to the SWGANH Database Schema.

Table Create Script

CREATE TABLE `biography_planet` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `planet` varchar(45) character set latin1 NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Table Describe