Skip to content

Instantly share code, notes, and snippets.

@revathskumar
Created March 7, 2012 05:49
Show Gist options
  • Save revathskumar/1991320 to your computer and use it in GitHub Desktop.
Save revathskumar/1991320 to your computer and use it in GitHub Desktop.
Codeigniter migration
<?php defined("BASEPATH") or exit("No direct script access allowed");
class Migrate extends CI_Controller{
public function index($version){
if(ENVIRONMENT != 'development'){
show_404("migrate");
exit;
}
$this->load->library("migration");
if(!$this->migration->version($version)){
show_error($this->migration->error_string());
}
}
}
@maikeldaloo
Copy link

Nice

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment