@@ -11,7 +11,7 @@ need to be run against the production machines next time you deploy.
1111The database table **migration ** tracks which migrations have already been
1212run so all you have to do is update your application files and
1313call ``$migration->current() `` to work out which migrations should be run.
14- The current version is found in **application /Config/Migrations.php **.
14+ The current version is found in **app /Config/Migrations.php **.
1515
1616.. contents ::
1717 :local:
@@ -36,7 +36,7 @@ method taken. Two numbering styles are available:
3636 the preferred scheme in CodeIgniter 3.0 and later.
3737
3838The desired style may be selected using the ``$type `` setting in your
39- *application /Config/Migrations.php * file. The default setting is timestamp.
39+ *app /Config/Migrations.php * file. The default setting is timestamp.
4040
4141Regardless of which numbering style you choose to use, prefix your migration
4242files with the migration number followed by an underscore and a descriptive
@@ -50,7 +50,7 @@ Create a Migration
5050******************
5151
5252This will be the first migration for a new site which has a blog. All
53- migrations go in the **application /Database/Migrations/ ** directory and have names such
53+ migrations go in the **app /Database/Migrations/ ** directory and have names such
5454as *20121031100537_Add_blog.php *.
5555::
5656
@@ -86,7 +86,7 @@ as *20121031100537_Add_blog.php*.
8686 }
8787 }
8888
89- Then in **application /Config/Migrations.php ** set ``$currentVersion = 20121031100537; ``.
89+ Then in **app /Config/Migrations.php ** set ``$currentVersion = 20121031100537; ``.
9090
9191The database connection and the database Forge class are both available to you through
9292``$this->db `` and ``$this->forge ``, respectively.
@@ -108,7 +108,7 @@ Database Groups
108108===============
109109
110110A migration will only be run against a single database group. If you have multiple groups defined in
111- **application /Config/Database.php **, then it will run against the ``$defaultGroup `` as specified
111+ **app /Config/Database.php **, then it will run against the ``$defaultGroup `` as specified
112112in that same configuration file. There may be times when you need different schemas for different
113113database groups. Perhaps you have one database that is used for all general site information, while
114114another database is used for mission critical data. You can ensure that migrations are run only
@@ -128,7 +128,7 @@ Namespaces
128128==========
129129
130130The migration library can automatically scan all namespaces you have defined within
131- **application /Config/Autoload.php ** and its ``$psr4 `` property for matching directory
131+ **app /Config/Autoload.php ** and its ``$psr4 `` property for matching directory
132132names. It will include all migrations it finds in Database/Migrations.
133133
134134Each namespace has it's own version sequence, this will help you upgrade and downgrade each module (namespace) without affecting other namespaces.
@@ -149,7 +149,7 @@ re-usable, modular code suites.
149149Usage Example
150150*************
151151
152- In this example some simple code is placed in **application /Controllers/Migrate.php **
152+ In this example some simple code is placed in **app /Controllers/Migrate.php **
153153to update the schema::
154154
155155 <?php
@@ -265,7 +265,7 @@ You can use (refresh) with the following options:
265265
266266**create **
267267
268- Creates a skeleton migration file in **application /Database/Migrations **.
268+ Creates a skeleton migration file in **app /Database/Migrations **.
269269
270270- When migration type is timestamp, using the YYYYMMDDHHIISS format::
271271
@@ -283,7 +283,7 @@ You can use (create) with the following options:
283283Migration Preferences
284284*********************
285285
286- The following is a table of all the config options for migrations, available in **application /Config/Migrations.php **.
286+ The following is a table of all the config options for migrations, available in **app /Config/Migrations.php **.
287287
288288========================== ====================== ========================== =============================================================
289289Preference Default Options Description
@@ -308,7 +308,7 @@ Class Reference
308308 :rtype: mixed
309309
310310 Migrates up to the current version (whatever is set for
311- ``$currentVersion `` in *application /Config/Migrations.php *).
311+ ``$currentVersion `` in *app /Config/Migrations.php *).
312312
313313 .. php :method :: findMigrations()
314314
0 commit comments