From 8a5891fb1b7bb3ea083e53b4c31ca6665c1a8e03 Mon Sep 17 00:00:00 2001 From: Corby Krick Date: Sun, 24 Feb 2013 17:25:05 -0600 Subject: [PATCH] Adding the CodeIgniter migrations config file. --- application/config/migration.php | 41 ++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 application/config/migration.php diff --git a/application/config/migration.php b/application/config/migration.php new file mode 100644 index 00000000..49d05306 --- /dev/null +++ b/application/config/migration.php @@ -0,0 +1,41 @@ +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 */