Difference between revisions of "Cells (Database Table)"

From SWGANH Wiki
Jump to: navigation, search
(Table Create Script)
(Table Describe)
 
Line 47: Line 47:
 
==Table Describe==
 
==Table Describe==
 
<pre>
 
<pre>
+
mysql> desc cells;
 +
+-----------+---------------------+------+-----+---------+-------+
 +
| Field    | Type                | Null | Key | Default | Extra |
 +
+-----------+---------------------+------+-----+---------+-------+
 +
| id        | bigint(20) unsigned | NO  | PRI | 0      |      |
 +
| parent_id | bigint(20) unsigned | NO  | MUL | 0      |      |
 +
+-----------+---------------------+------+-----+---------+-------+
 +
2 rows in set (0.00 sec)
 
</pre>
 
</pre>

Latest revision as of 00:31, 15 June 2007

Database Table - cells

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
Symbol OK.png Symbol OK.png

Related Tags

25% This document has been partially completed.

Database This document relates to the SWGANH Database Schema.

DB Table This document relates to the SWGANH Database Schema.

Table Create Script

CREATE TABLE `cells` (
  `id` bigint(20) unsigned NOT NULL default '0',
  `parent_id` bigint(20) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `fk_st_cells_parent_parent` (`parent_id`),
  CONSTRAINT `fk_cells_building_building` FOREIGN KEY (`parent_id`) REFERENCES `buildings` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Table Describe

mysql> desc cells;
+-----------+---------------------+------+-----+---------+-------+
| Field     | Type                | Null | Key | Default | Extra |
+-----------+---------------------+------+-----+---------+-------+
| id        | bigint(20) unsigned | NO   | PRI | 0       |       | 
| parent_id | bigint(20) unsigned | NO   | MUL | 0       |       | 
+-----------+---------------------+------+-----+---------+-------+
2 rows in set (0.00 sec)