| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- <?php
- namespace Home\Controller;
- use Think\Controller;
- class UpdateController extends BaseController {
-
- //升级数据库
- public function db(){
- if (strtolower(C("DB_TYPE")) == 'mysql' ) {
- $this->mysql();
- }
- elseif (strtolower(C("DB_TYPE")) == 'sqlite' ) {
- $this->sqlite();
- }
-
- }
- //升级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` ) ;");
- }
- }
- echo "OK!";
- }
- public function sqlite(){
- echo 'OK!';
- }
- }
|