Attributes (Database Table)
From SWGANH Wiki
Database Table - Attributes
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
DROP TABLE IF EXISTS `attributes`; CREATE TABLE `attributes` ( `id` int(11) unsigned NOT NULL auto_increment, `name` char(255) default NULL, `internal` tinyint(3) unsigned NOT NULL default '0', `attribute_internal_description` text NOT NULL, `item_tool_internal` int(10) unsigned NOT NULL default '0', `item_tool_internal_2` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `pk_attributes_name` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=2060 DEFAULT CHARSET=utf8;
Table Describe
mysql> describe attributes; +--------------------------------+---------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +--------------------------------+---------------------+------+-----+---------+----------------+ | id | int(11) unsigned | NO | PRI | NULL | auto_increment | | name | char(255) | YES | UNI | NULL | | | internal | tinyint(3) unsigned | NO | | 0 | | | attribute_internal_description | text | NO | | NULL | | | item_tool_internal | int(10) unsigned | NO | | 0 | | | item_tool_internal_2 | int(10) unsigned | NO | | 0 | | +--------------------------------+---------------------+------+-----+---------+----------------+ 6 rows in set (0.23 sec)