Revision 98, 297 bytes
(checked in by exi, 14 years ago)
|
Added EVE-Dev logo to about page.
Fix an issue with the error jpg in the siggen.
Made item values align right in the item_values mod.
Adding sqldata for the installer. However, this is not Kali data.
|
Line | |
---|
1 | CREATE TABLE `kb3_corps` ( |
---|
2 | `crp_id` int(11) NOT NULL auto_increment, |
---|
3 | `crp_name` varchar(64) NOT NULL default '', |
---|
4 | `crp_all_id` int(11) NOT NULL default '0', |
---|
5 | `crp_trial` tinyint(4) NOT NULL default '0', |
---|
6 | `crp_updated` datetime default NULL, |
---|
7 | PRIMARY KEY (`crp_id`) |
---|
8 | ) ENGINE=MyISAM; |
---|