Difference between revisions of "Biography profession (Database Table)"
From SWGANH Wiki
(New page: {{PageHeader|Database Table|biography_profession}} {| border="0" width="90%" cellpadding=6 |- |valign=top| ==Table Structure== {| align="center" |- || {| class = "wikitable" |- align="c...) |
(→Table Create Script) |
||
Line 36: | Line 36: | ||
==Table Create Script== | ==Table Create Script== | ||
<pre> | <pre> | ||
− | + | /* Formatted on 2007/06/15 01:27 (MySQL Formatter v5.34) */ | |
+ | CREATE TABLE `biography_profession` ( | ||
+ | `id` int(10) unsigned NOT NULL auto_increment, | ||
+ | `profession` varchar(45) character set latin1 NOT NULL, | ||
+ | PRIMARY KEY (`id`) | ||
+ | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
</pre> | </pre> | ||
Revision as of 23:26, 14 June 2007
Database Table - biography_profession
SWGANH Wiki is a repository of Star Wars Galaxies Developer information. This site is only meant to be used by SWGANH Developer team.
Table Create Script
/* Formatted on 2007/06/15 01:27 (MySQL Formatter v5.34) */ CREATE TABLE `biography_profession` ( `id` int(10) unsigned NOT NULL auto_increment, `profession` varchar(45) character set latin1 NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;