Difference between revisions of "Character xp (Database Table)"
From SWGANH Wiki
(New page: {{PageHeader|Database Table|character_xp}} {| border="0" width="90%" cellpadding=6 |- |valign=top| ==Table Structure== {| align="center" |- || {| class = "wikitable" |- align="center" s...) |
(No difference)
|
Latest revision as of 13:13, 30 September 2007
Database Table - character_xp
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_wars` ( `id` int(10) unsigned NOT NULL auto_increment, `war` char(64) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Table Describe
mysql> desc character_xp; +--------------+---------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +--------------+---------------------+------+-----+---------+-------+ | character_id | bigint(20) unsigned | NO | PRI | 0 | | | xp_id | int(11) unsigned | NO | PRI | 49 | | | value | int(10) | NO | | 0 | | +--------------+---------------------+------+-----+---------+-------+ 3 rows in set (0.00 sec)