diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-11-27 00:02:10 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-11-27 00:02:10 +0100 |
commit | afd2c3447967c9c0d8a35064cef0a1c8506c2eff (patch) | |
tree | 39b31ed3e2045eaff3fb4bf2cb653f3439ddfd41 /application/config/migration.php | |
parent | 848572596c165f925607dbdf7a672b3f3eac31f2 (diff) | |
parent | c4df02a089a874b621b77c892863eb42ce505cf0 (diff) |
Merge pull request #2021 from tomcode/linefeedsMigration
Linefeeds migration #2
Diffstat (limited to 'application/config/migration.php')
-rw-r--r-- | application/config/migration.php | 80 |
1 files changed, 40 insertions, 40 deletions
diff --git a/application/config/migration.php b/application/config/migration.php index afa264562..df42a3cae 100644 --- a/application/config/migration.php +++ b/application/config/migration.php @@ -1,41 +1,41 @@ -<?php defined('BASEPATH') OR exit('No direct script access allowed');
-/*
-|--------------------------------------------------------------------------
-| Enable/Disable Migrations
-|--------------------------------------------------------------------------
-|
-| Migrations are disabled by default but should be enabled
-| whenever you intend to do a schema migration.
-|
-*/
-$config['migration_enabled'] = FALSE;
-
-
-/*
-|--------------------------------------------------------------------------
-| Migrations version
-|--------------------------------------------------------------------------
-|
-| This is used to set migration version that the file system should be on.
-| If you run $this->migration->latest() this is the version that schema will
-| be upgraded / downgraded to.
-|
-*/
-$config['migration_version'] = 0;
-
-
-/*
-|--------------------------------------------------------------------------
-| Migrations Path
-|--------------------------------------------------------------------------
-|
-| Path to your migrations folder.
-| Typically, it will be within your application path.
-| Also, writing permission is required within the migrations path.
-|
-*/
-$config['migration_path'] = APPPATH . 'migrations/';
-
-
-/* End of file migration.php */
+<?php defined('BASEPATH') OR exit('No direct script access allowed'); +/* +|-------------------------------------------------------------------------- +| Enable/Disable Migrations +|-------------------------------------------------------------------------- +| +| Migrations are disabled by default but should be enabled +| whenever you intend to do a schema migration. +| +*/ +$config['migration_enabled'] = FALSE; + + +/* +|-------------------------------------------------------------------------- +| Migrations version +|-------------------------------------------------------------------------- +| +| This is used to set migration version that the file system should be on. +| If you run $this->migration->latest() this is the version that schema will +| be upgraded / downgraded to. +| +*/ +$config['migration_version'] = 0; + + +/* +|-------------------------------------------------------------------------- +| Migrations Path +|-------------------------------------------------------------------------- +| +| Path to your migrations folder. +| Typically, it will be within your application path. +| Also, writing permission is required within the migrations path. +| +*/ +$config['migration_path'] = APPPATH . 'migrations/'; + + +/* End of file migration.php */ /* Location: ./application/config/migration.php */
\ No newline at end of file |