Initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?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');");
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user