| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349 |
- <?php
- namespace Home\Controller;
- use Think\Controller;
- class UpdateController extends BaseController {
-
- //升级数据库
- public function db(){
- clear_runtime();
- if (strtolower(C("DB_TYPE")) == 'mysql' ) {
- $this->mysql();
- }
- elseif (strtolower(C("DB_TYPE")) == 'sqlite' ) {
- $this->sqlite();
- }
- clear_runtime();
- }
- //升级mysql数据库
- public function mysql(){
- //user表的username字段增大了长度,防止长邮箱的用户名注册不了
- $sql = "alter table ".C('DB_PREFIX')."user modify column username varchar(50) CHARACTER SET utf8 NOT NULL DEFAULT '' ";
- M("Catalog")->execute($sql);
- //item表增加last_update_time字段
- $columns = M("item")->getDbFields();
- if ($columns) {
- $has_it = 0 ;//是否存在该字段
- foreach ($columns as $key => $value) {
- if ($value == 'last_update_time') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0) {
- $sql = "ALTER TABLE ".C('DB_PREFIX')."item ADD last_update_time INT( 11 ) NOT NULL DEFAULT '0' COMMENT '最后更新时间';";
- D("Item")->execute($sql);
- }
- }
-
- //更改catalog表的order字段名为s_number
- $columns = M("Catalog")->getDbFields();
- if ($columns) {
- foreach ($columns as $key => $value) {
- if ($value == 'order') {
- $sql = "ALTER TABLE `".C('DB_PREFIX')."catalog` CHANGE `order` `s_number` INT( 10 ) NOT NULL DEFAULT '99' COMMENT '顺序号。数字越小越靠前。若此值全部相等时则按id排序';";
- M("Catalog")->execute($sql);
- }
- }
- }
- //更改page表的order字段名为s_number
- $columns = M("Page")->getDbFields();
- if ($columns) {
- foreach ($columns as $key => $value) {
- if ($value == 'order') {
- $sql = "ALTER TABLE `".C('DB_PREFIX')."page` CHANGE `order` `s_number` INT( 10 ) NOT NULL DEFAULT '99' COMMENT '顺序号。数字越小越靠前。若此值全部相等时则按id排序';";
- M("Page")->execute($sql);
- }
- }
- }
- //更改page_history表的order字段名为s_number
- $columns = M("PageHistory")->getDbFields();
- if ($columns) {
- foreach ($columns as $key => $value) {
- if ($value == 'order') {
- $sql = "ALTER TABLE `".C('DB_PREFIX')."page_history` CHANGE `order` `s_number` INT( 10 ) NOT NULL DEFAULT '99' COMMENT '顺序号。数字越小越靠前。若此值全部相等时则按id排序';";
- M("PageHistory")->execute($sql);
- }
- }
- }
- //为catalog表增加addtime索引
- $indexs = M("Catalog")->query(" show index from ".C('DB_PREFIX')."catalog");
- if ($indexs) {
- $has_it = 0 ;//是否存在该索引
- foreach ($indexs as $key => $value) {
- if ($value['column_name'] =='addtime') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0 ) {
- M("Catalog")->execute("ALTER TABLE ".C('DB_PREFIX')."catalog ADD INDEX ( `addtime` ) ;");
- }
- }
- //为item表增加addtime索引
- $indexs = M("Item")->query(" show index from ".C('DB_PREFIX')."item");
- if ($indexs) {
- $has_it = 0 ;//是否存在该索引
- foreach ($indexs as $key => $value) {
- if ($value['column_name'] =='addtime') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0 ) {
- M("Item")->execute("ALTER TABLE ".C('DB_PREFIX')."item ADD INDEX ( `addtime` ) ;");
- }
- }
- //为page表增加addtime索引
- $indexs = M("Page")->query(" show index from ".C('DB_PREFIX')."page");
- if ($indexs) {
- $has_it = 0 ;//是否存在该索引
- foreach ($indexs as $key => $value) {
- if ($value['column_name'] =='addtime') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0 ) {
- M("page")->execute("ALTER TABLE ".C('DB_PREFIX')."page ADD INDEX ( `addtime` ) ;");
- }
- }
- //为page_history表增加addtime索引
- $indexs = M("PageHistory")->query(" show index from ".C('DB_PREFIX')."page_history");
- if ($indexs) {
- $has_it = 0 ;//是否存在该索引
- foreach ($indexs as $key => $value) {
- if ($value['column_name'] =='addtime') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0 ) {
- M("PageHistory")->execute("ALTER TABLE ".C('DB_PREFIX')."page_history ADD INDEX ( `addtime` ) ;");
- }
- }
- //为page_history表增加page_id索引
- $indexs = M("PageHistory")->query(" show index from ".C('DB_PREFIX')."page_history");
- if ($indexs) {
- $has_it = 0 ;//是否存在该索引
- foreach ($indexs as $key => $value) {
- if ($value['column_name'] =='page_id') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0 ) {
- M("PageHistory")->execute("ALTER TABLE ".C('DB_PREFIX')."page_history ADD INDEX ( `page_id` ) ;");
- }
- }
- //catalog表增加parent_cat_id字段
- $columns = M("catalog")->getDbFields();
- if ($columns) {
- $has_it = 0 ;//是否存在该字段
- foreach ($columns as $key => $value) {
- if ($value == 'parent_cat_id') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0) {
- $sql = "ALTER TABLE ".C('DB_PREFIX')."catalog ADD parent_cat_id INT( 10 ) NOT NULL DEFAULT '0' COMMENT '上一级目录的id';";
- D("catalog")->execute($sql);
- }
- }
- //catalog表增加level字段
- $columns = M("catalog")->getDbFields();
- if ($columns) {
- $has_it = 0 ;//是否存在该字段
- foreach ($columns as $key => $value) {
- if ($value == 'level') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0) {
- $sql = "ALTER TABLE ".C('DB_PREFIX')."catalog ADD level INT( 10 ) NOT NULL DEFAULT '2' COMMENT '2为二级目录,3为三级目录';";
- D("catalog")->execute($sql);
- }
- }
- //item表增加item_domain字段
- $columns = M("item")->getDbFields();
- if ($columns) {
- $has_it = 0 ;//是否存在该字段
- foreach ($columns as $key => $value) {
- if ($value == 'item_domain') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0) {
- $sql = "ALTER TABLE ".C('DB_PREFIX')."item ADD item_domain varchar( 50 ) NOT NULL DEFAULT '' COMMENT 'item的个性域名';";
- D("item")->execute($sql);
- }
- }
- $sql = "CREATE TABLE IF NOT EXISTS `".C('DB_PREFIX')."user_token` (
- `id` int(10) NOT NULL AUTO_INCREMENT,
- `uid` int(10) NOT NULL DEFAULT '0',
- `token` varchar(200) NOT NULL DEFAULT '',
- `token_expire` int(11) NOT NULL DEFAULT '0' ,
- `ip` varchar(200) NOT NULL DEFAULT '',
- `addtime` int(11) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `token` (`token`)
- ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='' AUTO_INCREMENT=1 ";
- D("User")->execute($sql);
- //创建template表
- $sql = "CREATE TABLE IF NOT EXISTS `".C('DB_PREFIX')."template` (
- `id` int(10) NOT NULL AUTO_INCREMENT,
- `uid` int(10) NOT NULL DEFAULT '0',
- `username` varchar(200) NOT NULL DEFAULT '',
- `template_title` varchar(200) NOT NULL DEFAULT '' ,
- `template_content` text NOT NULL DEFAULT '',
- `addtime` int(11) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `uid` (`uid`)
- )ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='' AUTO_INCREMENT=1";
- D("UserToken")->execute($sql);
- //page表增加page_comments字段
- $columns = M("Page")->getDbFields();
- if ($columns) {
- $has_it = 0 ;//是否存在该字段
- foreach ($columns as $key => $value) {
- if ($value == 'page_comments') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0) {
- $sql = "ALTER TABLE ".C('DB_PREFIX')."page ADD page_comments varchar( 255 ) NOT NULL DEFAULT '' COMMENT '页面注释';";
- D("Page")->execute($sql);
- }
- }
- //page_history表增加page_comments字段
- $columns = M("PageHistory")->getDbFields();
- if ($columns) {
- $has_it = 0 ;//是否存在该字段
- foreach ($columns as $key => $value) {
- if ($value == 'page_comments') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0) {
- $sql = "ALTER TABLE ".C('DB_PREFIX')."page_history ADD page_comments varchar( 255 ) NOT NULL DEFAULT '' COMMENT '页面注释';";
- D("PageHistory")->execute($sql);
- }
- }
- echo "OK!";
- }
- public function sqlite(){
- //catalog表增加parent_cat_id字段
- $columns = M("catalog")->getDbFields();
- if ($columns) {
- $has_it = 0 ;//是否存在该字段
- foreach ($columns as $key => $value) {
- if ($value == 'parent_cat_id') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0) {
- $sql = "ALTER TABLE ".C('DB_PREFIX')."catalog ADD parent_cat_id INT( 10 ) NOT NULL DEFAULT '0' ;";
- D("catalog")->execute($sql);
- }
- }
- //catalog表增加level字段
- $columns = M("catalog")->getDbFields();
- if ($columns) {
- $has_it = 0 ;//是否存在该字段
- foreach ($columns as $key => $value) {
- if ($value == 'level') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0) {
- $sql = "ALTER TABLE ".C('DB_PREFIX')."catalog ADD level INT( 10 ) NOT NULL DEFAULT '2' ;";
- D("catalog")->execute($sql);
- }
- }
- //item表增加item_domain字段
- $columns = M("item")->getDbFields();
- if ($columns) {
- $has_it = 0 ;//是否存在该字段
- foreach ($columns as $key => $value) {
- if ($value == 'item_domain') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0) {
- $sql = "ALTER TABLE ".C('DB_PREFIX')."item ADD item_domain text NOT NULL DEFAULT '';";
- D("item")->execute($sql);
- }
- }
- //创建user_token表
- $sql = "CREATE TABLE IF NOT EXISTS `user_token` (
- `id` INTEGER PRIMARY KEY ,
- `uid` int(10) NOT NULL DEFAULT '0',
- `token` CHAR(200) NOT NULL DEFAULT '',
- `token_expire` int(11) NOT NULL DEFAULT '0' ,
- `ip` CHAR(200) NOT NULL DEFAULT '',
- `addtime` int(11) NOT NULL DEFAULT '0'
- )";
- D("UserToken")->execute($sql);
- //创建template表
- $sql = "CREATE TABLE IF NOT EXISTS `template` (
- `id` INTEGER PRIMARY KEY ,
- `uid` int(10) NOT NULL DEFAULT '0',
- `username` CHAR(200) NOT NULL DEFAULT '',
- `template_title` CHAR(200) NOT NULL DEFAULT '' ,
- `template_content` text NOT NULL DEFAULT '',
- `addtime` int(11) NOT NULL DEFAULT '0'
- )";
- D("UserToken")->execute($sql);
- //page表增加page_comments字段
- $columns = D("Page")->getDbFields();
- if ($columns) {
- $has_it = 0 ;//是否存在该字段
- foreach ($columns as $key => $value) {
- if ($value == 'page_comments') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0) {
- $sql = "ALTER TABLE ".C('DB_PREFIX')."page ADD page_comments text NOT NULL DEFAULT '' ;";
- D("Page")->execute($sql);
- }
- }
- //page_history 表增加page_comments字段
- $columns = D("PageHistory")->getDbFields();
- if ($columns) {
- $has_it = 0 ;//是否存在该字段
- foreach ($columns as $key => $value) {
- if ($value == 'page_comments') {
- $has_it = 1 ;
- }
- }
- if ($has_it === 0) {
- $sql = "ALTER TABLE ".C('DB_PREFIX')."page_history ADD page_comments text NOT NULL DEFAULT '';";
- D("PageHistory")->execute($sql);
- }
- }
- echo 'OK!';
- }
- }
|