forked from mirrors/easyappointments
7d04052697
# Conflicts: # src/application/config/migration.php # src/application/language/arabic/translations_lang.php # src/application/language/bulgarian/translations_lang.php # src/application/language/chinese/translations_lang.php # src/application/language/danish/translations_lang.php # src/application/language/dutch/translations_lang.php # src/application/language/english/translations_lang.php # src/application/language/finnish/translations_lang.php # src/application/language/french/translations_lang.php # src/application/language/german/translations_lang.php # src/application/language/greek/translations_lang.php # src/application/language/hindi/translations_lang.php # src/application/language/hungarian/translations_lang.php # src/application/language/italian/translations_lang.php # src/application/language/japanese/translations_lang.php # src/application/language/luxembourgish/translations_lang.php # src/application/language/polish/translations_lang.php # src/application/language/portuguese-br/translations_lang.php # src/application/language/portuguese/translations_lang.php # src/application/language/romanian/translations_lang.php # src/application/language/russian/translations_lang.php # src/application/language/slovak/translations_lang.php # src/application/language/spanish/translations_lang.php # src/application/language/turkish/translations_lang.php # src/assets/js/general_functions.js # src/assets/js/working_plan.js # src/assets/sql/data.sql
57 lines
1.8 KiB
PHP
Executable file
57 lines
1.8 KiB
PHP
Executable file
<?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'] = TRUE;
|
|
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Migrations table
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the name of the table that will store the current migrations state.
|
|
| When migrations runs it will store in a database table which migration
|
|
| level the system is at. It then compares the migration level in this
|
|
| table to the $config['migration_version'] if they are not the same it
|
|
| will migrate up. This must be set.
|
|
|
|
|
*/
|
|
$config['migration_table'] = 'ea_migrations';
|
|
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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'] = 14; // current
|
|
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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 */
|