renewenewsmember_connect_app_1.php
852 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_app`;");
E_C("CREATE TABLE `renewenewsmember_connect_app` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`apptype` char(20) NOT NULL DEFAULT '',
`appname` char(30) NOT NULL DEFAULT '',
`appid` char(60) NOT NULL DEFAULT '',
`appkey` char(120) NOT NULL DEFAULT '',
`isclose` tinyint(1) NOT NULL DEFAULT '0',
`myorder` smallint(5) unsigned NOT NULL DEFAULT '0',
`qappname` char(30) NOT NULL DEFAULT '',
`appsay` char(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `apptype` (`apptype`),
KEY `isclose` (`isclose`),
KEY `myorder` (`myorder`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8");
@include("../../inc/footer.php");
?>