Skip to content

Instantly share code, notes, and snippets.

@DominicImhof
DominicImhof / ciautomigrate
Created November 18, 2011 16:16
CodeIgniter Automigrate
<?php defined('BASEPATH') OR exit('No direct script access allowed');
class Automigrate {
private $_ci = null;
public function __construct()
{
$this->_ci =& get_instance();
$this->_ci->config->load('migration');