Difference between revisions of "Badge categories (Database Table)"
From SWGANH Wiki
(New page: {{PageHeader|Database Table|badge_categories}} {| border="0" width="90%" cellpadding=6 |- |valign=top| ==Table Structure== {| align="center" |- || {| class = "wikitable" |- align="cente...) |
(→Table Structure) |
||
Line 13: | Line 13: | ||
||'''Field'''||'''Type'''||'''Unsigned'''||'''Autoinc'''||'''Null'''||'''Key'''||'''Default Value'''||'''Description''' | ||'''Field'''||'''Type'''||'''Unsigned'''||'''Autoinc'''||'''Null'''||'''Key'''||'''Default Value'''||'''Description''' | ||
|- align="center" | |- align="center" | ||
− | |align="left"| | + | |align="left"| || ||align="center"|[[Image:Symbol OK.png|10px]]||align="center"|[[Image:Symbol OK.png|10px]]|| || || || |
|- align="center" style="background-color:#F1F1F1;" | |- align="center" style="background-color:#F1F1F1;" | ||
− | || | + | || || ||align="center"| ||align="center"| || || || || |
|- | |- | ||
|} | |} |
Revision as of 11:42, 6 June 2007
Database Table - badge_categories
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
-- -- Definition of table `attacks` -- DROP TABLE IF EXISTS `attacks`; CREATE TABLE `attacks` ( `id` int(10) unsigned NOT NULL auto_increment, `attackname` char(32) default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Table Describe
mysql> desc attacks; +------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------+------------------+------+-----+---------+----------------+ | id | int(10) unsigned | NO | PRI | NULL | auto_increment | | attackname | char(32) | YES | | NULL | | +------------+------------------+------+-----+---------+----------------+ 2 rows in set (0.00 sec)