Difference between revisions of "Banks (Database Table)"
From SWGANH Wiki
(New page: {{PageHeader|Database Table|banks}} {| border="0" width="90%" cellpadding=6 |- |valign=top| ==Table Structure== {| align="center" |- || {| class = "wikitable" |- align="center" style="b...) |
(→Table Create Script) |
||
Line 36: | Line 36: | ||
==Table Create Script== | ==Table Create Script== | ||
<pre> | <pre> | ||
− | + | CREATE TABLE `banks` ( | |
+ | `id` bigint(20) unsigned NOT NULL default '0', | ||
+ | `credits` int(11) unsigned NOT NULL default '0', | ||
+ | PRIMARY KEY (`id`) | ||
+ | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
</pre> | </pre> | ||
Revision as of 23:34, 14 June 2007
Database Table - banks
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 `banks` ( `id` bigint(20) unsigned NOT NULL default '0', `credits` int(11) unsigned NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;