summaryrefslogtreecommitdiffstats
path: root/system/libraries/Migration.php
diff options
context:
space:
mode:
authorCloudmanic Labs, LLC <github@cloudmanic.com>2011-09-18 21:23:00 +0200
committerCloudmanic Labs, LLC <github@cloudmanic.com>2011-09-18 21:23:00 +0200
commitd1ba8f790eb91deb2898ff19d7827ce86e40ee7c (patch)
treeacd68c6bc5b3a00c1d5e1fbc79df58b94a1b6c71 /system/libraries/Migration.php
parent539dcb0b2968a2d83c16b42a20252011152f2e65 (diff)
Migrations: Added a config that allows the system to migration to the latest migration when you load the library. This way you do not have to call migrations anywhere else in your code and can always be at the latest migration
Diffstat (limited to 'system/libraries/Migration.php')
-rw-r--r--system/libraries/Migration.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/system/libraries/Migration.php b/system/libraries/Migration.php
index 682d90752..28b1dd69f 100644
--- a/system/libraries/Migration.php
+++ b/system/libraries/Migration.php
@@ -33,6 +33,7 @@ class CI_Migration {
protected $_migration_path = NULL;
protected $_migration_version = 0;
protected $_migration_table = 'migrations';
+ protected $_migration_auto_latest = FALSE;
protected $_error_string = '';
@@ -86,6 +87,15 @@ class CI_Migration {
$this->db->insert($this->_migration_table, array('version' => 0));
}
+
+ // Do we auto migrate to the latest migration?
+ if ( $this->_migration_auto_latest == TRUE )
+ {
+ if ( ! $this->latest() )
+ {
+ show_error($this->error_string());
+ }
+ }
}
// --------------------------------------------------------------------