Revision 160, 426 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_pilots` ( |
---|
2 | `plt_id` int(11) NOT NULL auto_increment, |
---|
3 | `plt_name` varchar(64) NOT NULL, |
---|
4 | `plt_crp_id` int(11) NOT NULL default '0', |
---|
5 | `plt_externalid` int(11) NOT NULL default '0', |
---|
6 | `plt_killpoints` int(11) NOT NULL default '0', |
---|
7 | `plt_losspoints` int(11) NOT NULL default '0', |
---|
8 | `plt_updated` datetime default NULL, |
---|
9 | PRIMARY KEY (`plt_id`), |
---|
10 | UNIQUE KEY `plt_name` (`plt_name`) |
---|
11 | ) TYPE=MyISAM; |
---|