Attributes (Database Table)

From SWGANH Wiki
Revision as of 20:16, 16 June 2008 by Snow (Talk | contribs) (New page: {{PageHeader|Database Table|Attributes}} {| border="0" width="90%" cellpadding=6 |- |valign=top| ==Table Structure== {| align="center" |- || {| class = "anhsmalltable" |- align="center" s...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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

Related Tags

75% This document is nearing completion.

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 `swganh`.`attributes`;
CREATE TABLE  `swganh`.`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,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `pk_attributes_name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=837 DEFAULT CHARSET=utf8;

Table Describe

mysql> desc 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    |                |
+--------------------------------+---------------------+------+-----+---------+----------------+
4 rows in set (0.00 sec)