Initial commit

This commit is contained in:
易焱
2021-04-18 18:51:51 +08:00
commit ec705f2fa8
3240 changed files with 623103 additions and 0 deletions
@@ -0,0 +1,17 @@
<?php
$this->E_D("DROP TABLE IF EXISTS `db_ad_cat`;");
$this->E_C("CREATE TABLE `db_ad_cat` (
`adid` int(11) NOT NULL AUTO_INCREMENT,
`pubid` bigint(15) NOT NULL,
`name` varchar(50) NOT NULL,
`intro` varchar(255) DEFAULT NULL,
`type` varchar(50) NOT NULL,
`thumb` varchar(255) DEFAULT NULL,
`link` varchar(255) DEFAULT NULL,
`sort` int(11) NOT NULL,
`adcode` text,
PRIMARY KEY (`adid`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8");
$this->E_D("replace into `db_ad_cat` values('7','1529997869','首页banner广告','','图片轮播','','','0','');");
?>