qa-ifish7/web/Application/Data/sqlBake/mhzljc_20200828155410/db_table_1.php

14 lines
542 B
PHP

<?php
$this->E_D("DROP TABLE IF EXISTS `db_table`;");
$this->E_C("CREATE TABLE `db_table` (
`table_id` smallint(4) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`table_name` varchar(50) NOT NULL,
`description` varchar(255) DEFAULT NULL,
`sort` int(11) NOT NULL,
PRIMARY KEY (`table_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8");
$this->E_D("replace into `db_table` values('9','新闻数据表','news','','0');");
$this->E_D("replace into `db_table` values('10','产品数据表','product','','0');");
?>