Initial commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
$this->E_D("DROP TABLE IF EXISTS `db_link_cat`;");
|
||||
$this->E_C("CREATE TABLE `db_link_cat` (
|
||||
`catid` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`pubid` bigint(15) NOT NULL,
|
||||
`lang` varchar(50) DEFAULT NULL,
|
||||
`name` varchar(50) NOT NULL,
|
||||
`thumb` varchar(255) DEFAULT NULL,
|
||||
`link` varchar(255) DEFAULT NULL,
|
||||
`sort` int(11) NOT NULL,
|
||||
PRIMARY KEY (`catid`)
|
||||
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8");
|
||||
$this->E_D("replace into `db_link_cat` values('7','1529997869','','合作客户','','','0');");
|
||||
$this->E_D("replace into `db_link_cat` values('12','0','','友情链接','','','0');");
|
||||
$this->E_D("replace into `db_link_cat` values('13','0','','teee','','','0');");
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user