Difference between revisions of "Attacks (Database Table)"
From SWGANH Wiki
(→Table Structure) |
|||
Line 1: | Line 1: | ||
{{PageHeader|Database Table|Accounts}} | {{PageHeader|Database Table|Accounts}} | ||
+ | |||
+ | {| border="0" width="90%" cellpadding=6 | ||
+ | |- | ||
+ | |valign=top| | ||
==Table Structure== | ==Table Structure== | ||
Line 12: | Line 16: | ||
|- | |- | ||
||attackname||char(32)||align="center"| ||align="center"| ||NO|| || ||Attack Name | ||attackname||char(32)||align="center"| ||align="center"| ||NO|| || ||Attack Name | ||
+ | |- | ||
+ | |} | ||
+ | |} | ||
+ | |||
+ | |valign=top| | ||
+ | |||
+ | == Related Tags == | ||
+ | {|align="center" | ||
+ | |- | ||
+ | ||{{D75%}} | ||
+ | |- | ||
+ | ||{{Database}} | ||
+ | |- | ||
+ | ||{{DatabaseTable}} | ||
|- | |- | ||
|} | |} |
Revision as of 14:04, 5 June 2007
Database Table - Accounts
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 `attacks` -- DROP TABLE IF EXISTS `attacks`; CREATE TABLE `attacks` ( `id` int(10) unsigned NOT NULL auto_increment, `attackname` char(32) default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Table Describe
mysql> desc attacks; +------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------+------------------+------+-----+---------+----------------+ | id | int(10) unsigned | NO | PRI | NULL | auto_increment | | attackname | char(32) | YES | | NULL | | +------------+------------------+------+-----+---------+----------------+ 2 rows in set (0.00 sec)