summaryrefslogtreecommitdiffstats
path: root/system/libraries/Migration.php
AgeCommit message (Collapse)AuthorFilesLines
2019-01-02Merge pull request #5662 from jim-parry/copyright2019Instructor, BCIT1-3/+3
Update copyright date to 2019
2018-01-09[ci skip] Merge pull request #5376 from jim-parry/copyright-updateAndrey Andreev1-2/+2
Annual copyright update Conflicts resolved: system/libraries/Cache/drivers/Cache_apcu.php
2017-01-03Update copyright data to 2017Master Yoda1-2/+2
2016-07-28Remove dead code written for PHP 5.2Andrey Andreev1-4/+1
2016-03-16A small Migrations tweakAndrey Andreev1-1/+6
2016-03-16Fix #4539Andrey Andreev1-34/+63
2016-01-11[ci skip] Update ellislab.com links to https tooAndrey Andreev1-1/+1
2016-01-11[ci skip] Update codeigniter.com links to httpsAndrey Andreev1-1/+1
2016-01-11[ci skip] Bump year to 2016Andrey Andreev1-2/+2
2015-05-21update function latestftwbzhao1-1/+1
2015-05-20optimize migrations class referenceftwbzhao1-3/+3
2015-02-04Adjusted returns/return types to suggestionsGabriel Potkány1-2/+2
2015-02-04Fixed inconsistent return typesGabriel Potkány1-1/+1
2015-01-21Remove closing blocks at end of PHP filesvlakoff1-3/+0
2015-01-20[ci skip] Change some log messages' levelAndrey Andreev1-1/+1
'Class Loaded' type of messages flood log files when log_threshold is set to 2 (debug). They're now logged as 'info' level. This is manually applying PR #1528, which was created to do the same thing, but became outdated.
2015-01-09Bulk (mostly documentation) updateAndrey Andreev1-3/+3
- Remove PHP version from license notices - Bump year number in copyright notices - Recommend PHP 5.4 or newer to be used - Tell Travis-CI to test on PHP 5.3.0 instead of the latest 5.3 version Related: #3450
2014-10-27[ci skip] Switch to MIT license; close #3293Andrey Andreev1-15/+26
2014-04-01Optimize #2982Andrey Andreev1-1/+1
2014-04-01Removed tab on empty line too.Ahmad Anbar1-1/+1
2014-04-01Removed tabs.Ahmad Anbar1-2/+2
2014-04-01Fixed according to comment.Ahmad Anbar1-3/+6
2014-04-01Fix #2970Ahmad Anbar1-1/+6
2014-02-25Use strings instead of integers for migration version numbersAndrey Andreev1-14/+15
- Allows timestamp versions to work on 32-bit systems. - Fixes #2902. - Supersedes PR #2368.
2014-02-19Fixed typos in Migration library documentationJacob Tabak1-2/+2
Signed-off-by: Jacob Tabak <Jacob.Tabak@HelloWorld.com>
2014-02-112013 > 2014darwinel1-1/+1
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015.
2013-02-21Disable autoloader call from class_exists() occurences to improve performanceAndrey Andreev1-1/+1
Note: The Driver libary tests seem to depend on that, so one occurence in CI_Loader is left until we resolve that.
2013-01-30Fix/improve #2211Andrey Andreev1-2/+2
2013-01-03Fix #2108Andrey Andreev1-1/+1
2013-01-01[ci skip] Happy new yearAndrey Andreev1-1/+1
2012-12-03[ci skip] Cleaned some spacesAndrey Andreev1-2/+2
2012-11-28Fix #2037Andrey Andreev1-6/+8
2012-11-13Clean-up following PR #1949Andrey Andreev1-29/+31
2012-11-13Improved code readabilityJonathon Hill1-1/+3
2012-11-12Code style fixesJonathon Hill1-5/+6
Signed-off-by: Jonathon Hill <jhill@brandmovers.com>
2012-11-12Changed the `migration_style` config setting to `migration_type`Jonathon Hill1-7/+7
Signed-off-by: Jonathon Hill <jhill@brandmovers.com>
2012-11-12Merge remote-tracking branch 'upstream/develop' into developJonathon Hill1-1/+2
Conflicts: user_guide_src/source/changelog.rst Signed-off-by: Jonathon Hill <jhill@brandmovers.com>
2012-11-12Fixed a mismatched constraint value when creating the migration tableJonathon Hill1-1/+1
Signed-off-by: Jonathon Hill <jhill@brandmovers.com>
2012-11-01Manually apply PR #1594 (fixing phpdoc page-level generation/warnings)Andrey Andreev1-1/+2
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files.
2012-10-31Added support for timestamp-based migrationsJonathon Hill1-100/+130
Signed-off-by: Jonathon Hill <jhill@brandmovers.com>
2012-07-15Changed TRUE and FALSE values to be uppercaseAlex Bilbie1-1/+1
2012-07-05Merge pull request #1576 from Dumk0/patch-6Phil Sturgeon1-1/+1
improvement for latest migration id calculation
2012-07-05added space after (int)Dumk01-1/+1
2012-07-05improvement for latest migration id calculationDumk01-1/+1
2012-07-05Fixed annotation for CI_Migration->find_migrations() methodDumk01-2/+2
2012-06-19Fixed Migrations and an incorrect strict comparison.Phil Sturgeon1-1/+1
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /system/librariesAlex Bilbie1-2/+2
2012-05-17Clean up the librariesAndrey Andreev1-6/+7
2012-04-27Fixed Cart, Migration, Parser and Zip librariesTimothy Warren1-0/+39
2012-03-26Remove access description lines and cleanup the Migration libraryAndrey Andreev1-18/+8
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon1-1/+1
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway...