Difference between revisions of "Attributes (Database Table)"

From SWGANH Wiki
Jump to: navigation, search
(Table Create Script)
 
Line 18: Line 18:
 
|- align="center" style="background-color:#F1F1F1;"
 
|- align="center" style="background-color:#F1F1F1;"
 
|align="left"|attribute_internal_description||text||align="center"| ||align="center"| ||NO|| ||Null||Attribute Description
 
|align="left"|attribute_internal_description||text||align="center"| ||align="center"| ||NO|| ||Null||Attribute Description
 +
|- align="center"
 +
|align="left"|item_tool_internal||int(10)||align="center"|[[Image:Symbol OK.png|10px]]||align="center"| ||NO|| ||0||Attribute Description
 +
|- align="center"
 +
|align="left"|item_tool_internal_2||int(10)||align="center"|[[Image:Symbol OK.png|10px]]||align="center"| ||NO|| ||0||Attribute Description
 
|}
 
|}
 
|}
 
|}
Line 38: Line 42:
 
DROP TABLE IF EXISTS `attributes`;
 
DROP TABLE IF EXISTS `attributes`;
 
CREATE TABLE `attributes` (
 
CREATE TABLE `attributes` (
   `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
+
   `id` int(11) unsigned NOT NULL auto_increment,
   `name` char(255) DEFAULT NULL,
+
   `name` char(255) default NULL,
   `internal` tinyint(3) unsigned NOT NULL DEFAULT '0',
+
   `internal` tinyint(3) unsigned NOT NULL default '0',
 
   `attribute_internal_description` text NOT NULL,
 
   `attribute_internal_description` text NOT NULL,
   PRIMARY KEY (`id`),
+
  `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`)
 
   UNIQUE KEY `pk_attributes_name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=1289 DEFAULT CHARSET=utf8;
+
) ENGINE=InnoDB AUTO_INCREMENT=2060 DEFAULT CHARSET=utf8;
 
</pre>
 
</pre>
  
 
==Table Describe==
 
==Table Describe==
 
<pre>
 
<pre>
mysql> desc attributes;
+
mysql> describe attributes;
 
+--------------------------------+---------------------+------+-----+---------+----------------+
 
+--------------------------------+---------------------+------+-----+---------+----------------+
 
| Field                          | Type                | Null | Key | Default | Extra          |
 
| Field                          | Type                | Null | Key | Default | Extra          |
Line 57: Line 63:
 
| internal                      | tinyint(3) unsigned | NO  |    | 0      |                |
 
| internal                      | tinyint(3) unsigned | NO  |    | 0      |                |
 
| attribute_internal_description | text                | NO  |    | NULL    |                |
 
| attribute_internal_description | text                | NO  |    | NULL    |                |
 +
| item_tool_internal            | int(10) unsigned    | NO  |    | 0      |                |
 +
| item_tool_internal_2          | int(10) unsigned    | NO  |    | 0      |                |
 
+--------------------------------+---------------------+------+-----+---------+----------------+
 
+--------------------------------+---------------------+------+-----+---------+----------------+
4 rows in set (0.00 sec)
+
6 rows in set (0.23 sec)
 
</pre>
 
</pre>

Latest revision as of 23:28, 12 March 2010

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 Structure

Field Type Unsigned Autoinc Null Key Default Value Description
id int(11) Symbol OK.png Symbol OK.png NO Primary Null Attribute ID
name char(255) YES Unique Null Attribute Name
internal tinyint(3) Symbol OK.png NO 0 Attribute Description
attribute_internal_description text NO Null Attribute Description
item_tool_internal int(10) Symbol OK.png NO 0 Attribute Description
item_tool_internal_2 int(10) Symbol OK.png NO 0 Attribute Description

Related Tags

100% This document is complete.

Database This document relates to the SWGANH Database Schema.

DB Table This document relates to the SWGANH Database Schema.

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)