PluginProbe
ShiftController Employee Shift Scheduling / 2.1.2
ShiftController Employee Shift Scheduling v2.1.2
4.9.97 4.9.96 4.9.95 4.9.74 4.9.75 4.9.76 4.9.77 4.9.78 4.9.84 4.9.85 4.9.87 4.9.91 4.9.92 trunk 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 3.2.4 All 38 releases
shiftcontroller / application / config / migration.php

migration.php in ShiftController Employee Shift Scheduling 2.1.2, at application/config/migration.php

41 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php defined('BASEPATH') OR exit('No direct script access allowed');
2 /*
3 |--------------------------------------------------------------------------
4 | Enable/Disable Migrations
5 |--------------------------------------------------------------------------
6 |
7 | Migrations are disabled by default but should be enabled
8 | whenever you intend to do a schema migration.
9 |
10 */
11 $config['migration_enabled'] = TRUE;
12
13
14 /*
15 |--------------------------------------------------------------------------
16 | Migrations version
17 |--------------------------------------------------------------------------
18 |
19 | This is used to set migration version that the file system should be on.
20 | If you run $this->migration->latest() this is the version that schema will
21 | be upgraded / downgraded to.
22 |
23 */
24 $config['migration_version'] = 3;
25
26
27 /*
28 |--------------------------------------------------------------------------
29 | Migrations Path
30 |--------------------------------------------------------------------------
31 |
32 | Path to your migrations folder.
33 | Typically, it will be within your application path.
34 | Also, writing permission is required within the migrations path.
35 |
36 */
37 $config['migration_path'] = APPPATH . 'migrations/';
38
39
40 /* End of file migration.php */
41 /* Location: ./application/config/migration.php */