Codeigniter迁移到更改表

时间:2015-02-03 05:12:19

标签: php mysql codeigniter migration database-migration

我在codeigniter中创建了一个Migration来创建一个包含4列的MySQL表。现在我想更改其中一列的名称,而不会丢失该表中的数据。

首先,我启用了迁移&将版本设置为1。 然后,我创建了一个file 001_create_users.php并添加了以下代码。

class Migration_Create_users extends CI_Migration {

    public function up(){

        $this->dbforge->add_field(
            array(
                'id'        => array('type'=>'INT', 'constraint'=>11, 'unsigned'=>TRUE, 'auto_increment'=>TRUE),
                'email'     => array('type'=>'VARCHAR', 'constraint'=>100),
                'password'  => array('type'=>'VARCHAR', 'constraint'=>255),
                'created'      => array('type'=>"TIMESTAMP DEFAULT CURRENT_TIMESTAMP")
            )
        );

        $this->dbforge->add_key('id');
        $this->dbforge->create_table('users');

    }

    public function down(){

        $this->dbforge->drop_table('users');

    }
}

现在我想将列名“date”更改为“created_at”。那我该怎么办呢?我的意思是最好的方法是什么? 还有谁能解释我如何做回滚?因为我使用了跟随控制器来运行迁移。

class Migration extends Admin_Controller{

    public function __construct(){
        parent::__construct();
    }

    public function index($version){

        $this->load->library('migration');

        if( !$this->migration->version($version)){
            show_error($this->migration->error_string());
        }
        echo "I'm in Migration";
    }

}

所以,如果我运行http://localhost/migration/index/1它将运行up()函数。如何通过浏览器执行回滚?我可以创建另一种方法并调用它吗?

我仍然不明白迁移是如何运作的,有人可以向我解释一下吗?

1 个答案:

答案 0 :(得分:1)

您可以尝试浏览http://localhost/migration/index/0以返回版本0.或者您可以创建单独的功能'回滚'回滚到特定版本并使索引功能仅使用$this->migration->current()

进行迁移