Revision 160, 507 bytes
(checked in by exi, 14 years ago)
|
Added Rise alliance logo.
Dumped new sql data with changed create table to support mysql 3.23.
|
Line | |
---|
1 | CREATE TABLE `kb3_items` ( |
---|
2 | `itm_id` int(11) NOT NULL auto_increment, |
---|
3 | `itm_name` varchar(128) NOT NULL default '', |
---|
4 | `itm_volume` double NOT NULL default '0', |
---|
5 | `itm_type` int(11) NOT NULL default '1', |
---|
6 | `itm_externalid` int(11) NOT NULL default '0', |
---|
7 | `itm_techlevel` tinyint(4) NOT NULL default '1', |
---|
8 | `itm_icon` varchar(56) NOT NULL, |
---|
9 | `itm_value` bigint(4) NOT NULL default '0', |
---|
10 | PRIMARY KEY (`itm_id`), |
---|
11 | UNIQUE KEY `itm_name` (`itm_name`), |
---|
12 | KEY `itm_type` (`itm_type`) |
---|
13 | ) TYPE=MyISAM; |
---|