diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-04-27 16:45:43 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-04-27 16:45:43 +0200 |
commit | 2fbd57d6d58afd64caa841a876e9773272275526 (patch) | |
tree | 917b0b26bbd8bfdef11c35c8f5df90aab0475473 /system/libraries/Migration.php | |
parent | 8a6d16c62602d249d2e66356faf5e2f4b8470c9e (diff) | |
parent | 68f098142cb71f6a57f74ce34b5f58616cc1ed2f (diff) |
Merge pull request #1296 from timw4mail/library-cleanup
Library cleanup - adding additional docblocks
Diffstat (limited to 'system/libraries/Migration.php')
-rw-r--r-- | system/libraries/Migration.php | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/system/libraries/Migration.php b/system/libraries/Migration.php index a18fcb9f1..ce4683fc1 100644 --- a/system/libraries/Migration.php +++ b/system/libraries/Migration.php @@ -39,14 +39,53 @@ */ class CI_Migration { + /** + * Whether the library is enabled + * + * @var bool + */ protected $_migration_enabled = FALSE; + + /** + * Path to migration classes + * + * @var string + */ protected $_migration_path = NULL; + + /** + * Current migration version + * + * @var mixed + */ protected $_migration_version = 0; + + /** + * Database table with migration info + * + * @var string + */ protected $_migration_table = 'migrations'; + + /** + * Whether to automatically run migrations + * + * @var bool + */ protected $_migration_auto_latest = FALSE; + /** + * Error message + * + * @var string + */ protected $_error_string = ''; + /** + * Initialize Migration Class + * + * @param array + */ public function __construct($config = array()) { # Only run this constructor on main library load |