本文介绍了如何运行 CodeIgniter 迁移?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道如何通过 http://codeigniter.com/user_guide/libraries/migration 创建它们.html

但是一旦我创建了迁移文件,我该如何运行它们?

But once I've created my migration files, how do I run them?

推荐答案

我不确定这是正确的方法,但它对我有用.

I am not sure this is the right way to do it, But It works for me.

我创建了一个名为 migrate (controllers/migrate.php) 的控制器.

I created a controller named migrate (controllers/migrate.php).

<?php defined("BASEPATH") or exit("No direct script access allowed");

class Migrate extends CI_Controller{

    public function index($version){
        $this->load->library("migration");

      if(!$this->migration->version($version)){
          show_error($this->migration->error_string());
      }   
    }
}

然后从浏览器我将调用这个 url 在 migrate 控制器中执行 index 动作
例如:http://localhost/index.php/migrate/index/1

Then from browser I will call this url to execute index action in migrate controller
Eg : http://localhost/index.php/migrate/index/1

这篇关于如何运行 CodeIgniter 迁移?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 05:03