I know how to create them via http://codeigniter.com/user_guide/libraries/migration.html

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

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

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

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());
      }   
    }
}

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

link|improve this answer
Once after the migration I recommend you to remove this controller from server until the next migration.This is a public url and if you keep this in server anyone can easily drop your tables. – RSK Feb 8 at 16:13
1  
I think you'd only want to execute based on ENVIRONMENT – Shamoon Feb 9 at 16:02
@Shamoon : You have the point. Thank you. – RSK Feb 11 at 8:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.