Revision 160, 477 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_ships` ( |
---|
2 | `shp_id` int(11) NOT NULL auto_increment, |
---|
3 | `shp_name` varchar(64) NOT NULL default '', |
---|
4 | `shp_class` int(11) NOT NULL default '18', |
---|
5 | `shp_externalid` int(11) NOT NULL default '0', |
---|
6 | `shp_rce_id` int(11) NOT NULL default '0', |
---|
7 | `shp_baseprice` int(12) NOT NULL default '0', |
---|
8 | `shp_techlevel` tinyint(4) NOT NULL default '1', |
---|
9 | PRIMARY KEY (`shp_id`), |
---|
10 | UNIQUE KEY `shp_name` (`shp_name`), |
---|
11 | KEY `shp_class` (`shp_class`) |
---|
12 | ) TYPE=MyISAM; |
---|