diff options
author | Cloudmanic Labs, LLC <github@cloudmanic.com> | 2011-09-18 21:23:00 +0200 |
---|---|---|
committer | Cloudmanic Labs, LLC <github@cloudmanic.com> | 2011-09-18 21:23:00 +0200 |
commit | d1ba8f790eb91deb2898ff19d7827ce86e40ee7c (patch) | |
tree | acd68c6bc5b3a00c1d5e1fbc79df58b94a1b6c71 /application/config | |
parent | 539dcb0b2968a2d83c16b42a20252011152f2e65 (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 'application/config')
-rw-r--r-- | application/config/migration.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/application/config/migration.php b/application/config/migration.php index aca052d0c..1f532f170 100644 --- a/application/config/migration.php +++ b/application/config/migration.php @@ -25,6 +25,22 @@ $config['migration_enabled'] = FALSE; */
$config['migration_table'] = 'migrations';
+
+/*
+|--------------------------------------------------------------------------
+| Auto Migrate To Latest
+|--------------------------------------------------------------------------
+|
+| If this is set to TRUE when you load the migrations class and have
+| $config['migration_enabled'] set to TRUE the system will auto migrate
+| to your latest migration (whatever $config['migration_version'] is
+| set to). This way you do not have to call migrations anywhere else
+| in your code to have the latest migration.
+|
+*/
+$config['migration_auto_latest'] = FALSE;
+
+
/*
|--------------------------------------------------------------------------
| Migrations version
|