Difference between revisions of "Biography templates (Database Table)"
From SWGANH Wiki
(New page: {{PageHeader|Database Table|biography_templates}} {| border="0" width="90%" cellpadding=6 |- |valign=top| ==Table Structure== {| align="center" |- || {| class = "wikitable" |- align="ce...) |
(→Table Create Script) |
||
Line 36: | Line 36: | ||
==Table Create Script== | ==Table Create Script== | ||
<pre> | <pre> | ||
− | + | CREATE TABLE `biography_templates` ( | |
+ | `id` int(10) unsigned NOT NULL auto_increment, | ||
+ | `biography` text NOT NULL, | ||
+ | PRIMARY KEY (`id`) | ||
+ | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
</pre> | </pre> | ||
Latest revision as of 23:27, 14 June 2007
Database Table - biography_templates
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
CREATE TABLE `biography_templates` ( `id` int(10) unsigned NOT NULL auto_increment, `biography` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;