renewenewsmember_connect_1.php
775 Bytes
<?php
@include("../../inc/header.php");
/*
SoftName : EmpireBak
Author : wm_chief
Copyright: Powered by www.phome.net
*/
E_D("DROP TABLE IF EXISTS `renewenewsmember_connect`;");
E_C("CREATE TABLE `renewenewsmember_connect` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`apptype` char(20) NOT NULL DEFAULT '',
`bindkey` char(32) NOT NULL DEFAULT '',
`bindtime` int(10) unsigned NOT NULL DEFAULT '0',
`loginnum` int(10) unsigned NOT NULL DEFAULT '0',
`lasttime` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `userid` (`userid`),
KEY `bindkey` (`bindkey`),
KEY `apptype` (`apptype`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8");
@include("../../inc/footer.php");
?>