Badge categories (Database Table)
From SWGANH Wiki
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 `badge_categories` -- DROP TABLE IF EXISTS `badge_categories`; CREATE TABLE `badge_categories` ( `Id` int(11) unsigned NOT NULL default '0', `name` char(255) default NULL, PRIMARY KEY (`Id`), UNIQUE KEY `pk_name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=REDUNDANT;
Table Describe
mysql> describe badge_categories; +-------+------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------+------------------+------+-----+---------+-------+ | Id | int(11) unsigned | NO | PRI | 0 | | | name | char(255) | YES | UNI | NULL | | +-------+------------------+------+-----+---------+-------+ 2 rows in set (0.10 sec)