From the panel site
This commit is contained in:
parent
d684ca74fb
commit
2fc04bcfac
1194 changed files with 154606 additions and 13040 deletions
|
|
@ -24,9 +24,19 @@
|
|||
|
||||
// Module general information
|
||||
$module_title = "tshock";
|
||||
$module_version = "1.0";
|
||||
$module_version = "Alpha";
|
||||
$db_version = 0;
|
||||
$module_required = FALSE;
|
||||
$module_menus = array( array( 'subpage' => '', 'name'=>'tshock', 'group'=>'user' ) );
|
||||
|
||||
$install_queries = array();
|
||||
$install_queries[0] = array(
|
||||
"DROP TABLE IF EXISTS ".OGP_DB_PREFIX."tshock;",
|
||||
"CREATE TABLE ".OGP_DB_PREFIX."tshock (
|
||||
`token_id` int(11) NOT NULL auto_increment,
|
||||
`ip` varchar(255) NOT NULL,
|
||||
`port` int(11) NOT NULL,
|
||||
`token` varchar(64) NOT NULL,
|
||||
PRIMARY KEY (`token_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;");
|
||||
?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue