Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-07-24 | Fixed typos | Calvin Tam | 1 | -1/+1 | |
2015-07-15 | allow add of keys with array | Adrian Voicu | 1 | -1/+1 | |
This will allow adding multiple keys using array (http://www.codeigniter.com/user_guide/database/forge.html#adding-keys). Only if user wants, he can use the table columns to set a primary key by setting second parameter as TRUE. | |||||
2015-07-02 | Close #3941 | Andrey Andreev | 1 | -6/+1 | |
2015-01-29 | fix typo in comments | Claudio Galdiolo | 1 | -1/+1 | |
2015-01-21 | Remove closing blocks at end of PHP files | vlakoff | 1 | -3/+0 | |
2015-01-20 | [ci skip] Change some log messages' level | Andrey Andreev | 1 | -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-09 | Bulk (mostly documentation) update | Andrey Andreev | 1 | -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-12-04 | DB forge/utilities polishing (docs) following #3375, #3378 | Andrey Andreev | 1 | -50/+9 | |
2014-11-03 | Move MySQL comments to MySQL forge classes only | Zachary Flower | 1 | -33/+6 | |
2014-11-03 | Move comment field after unique field in db forge | Zachary Flower | 1 | -3/+3 | |
2014-11-03 | Ensure forge comments are actually getting parsed | Zachary Flower | 1 | -0/+2 | |
Signed-off-by: Zachary Flower <zach@ninjaninja.net> | |||||
2014-11-03 | Add support for the COMMENT field in DBForge and MySQL Forge classes (pdo, ↵ | Zachary Flower | 1 | -0/+30 | |
mysql, and mysqli) Signed-off-by: Zachary Flower <zach@ninjaninja.net> | |||||
2014-10-27 | [ci skip] Switch to MIT license; close #3293 | Andrey Andreev | 1 | -14/+25 | |
2014-08-15 | Fix #3187 | Andrey Andreev | 1 | -1/+1 | |
2014-03-31 | [ci skip] Fix #2972 | Andrey Andreev | 1 | -1/+1 | |
2014-03-17 | Fix DB forge unsigned attribute (PR #2949) | Andrey Andreev | 1 | -15/+13 | |
2014-03-10 | Fix #2928, #2929 | Andrey Andreev | 1 | -0/+1 | |
2014-03-10 | Fix #2928 | Andrey Andreev | 1 | -2/+5 | |
2014-02-11 | 2013 > 2014 | darwinel | 1 | -1/+1 | |
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015. | |||||
2014-01-20 | Add support for optional table attributes to CI_DB_forge::create_table() | Andrey Andreev | 1 | -5/+31 | |
Supersedes PRs #989, #2776 Related issue: #41 | |||||
2013-12-18 | Use table name as a prefix for index names | mjnaderi | 1 | -3/+2 | |
2013-12-18 | Cleanup DB_forge _process_indexes | mjnaderi | 1 | -1/+2 | |
2013-12-18 | Cleanup DB_forge _process_indexes | mjnaderi | 1 | -1/+0 | |
2013-10-28 | Really fix #2703 | Andrey Andreev | 1 | -1/+1 | |
2013-10-28 | Fix #2703 | Andrey Andreev | 1 | -1/+17 | |
2013-03-15 | Fix MSSQL ALTER TABLE ADD statement | Andrey Andreev | 1 | -1/+5 | |
An improved version of PR #2329 | |||||
2013-01-01 | [ci skip] Happy new year | Andrey Andreev | 1 | -1/+1 | |
2012-12-17 | [ci skip] Fix some spaces | Andrey Andreev | 1 | -1/+1 | |
2012-12-17 | update for Issue #2064 (changed docblocks which return $this or only call a ↵ | Andrew Podner | 1 | -2/+2 | |
method that returns $this to @return CI_DB_class_name) | |||||
2012-11-25 | Fix #2027 | Andrey Andreev | 1 | -3/+14 | |
2012-11-22 | Fix modify_column() issues (#2020) | Andrey Andreev | 1 | -1/+1 | |
2012-11-19 | DB forge to use single quotes for ENUM/SET string delimiters | Andrey Andreev | 1 | -1/+1 | |
2012-11-19 | PDO was not escaping strings for SET as array | Phil Sturgeon | 1 | -1/+1 | |
2012-11-12 | Bring back the AFTER clause for DB Forge add_column() | Andrey Andreev | 1 | -1/+9 | |
(it was temporarily removed due to multiple inconsistencies with other drivers) This commit also fixes issue #1988. Also added support for the FIRST clause (again, MySQL and CUBRID only). | |||||
2012-11-06 | Fix a lang key typo | Andrey Andreev | 1 | -8/+8 | |
2012-11-06 | Added possibility to pass custom database objects to DB Forge and DB Utilities | Andrey Andreev | 1 | -5/+4 | |
Also, their property is no longer public and the utility class no longer extends CI_DB_forge. | |||||
2012-11-05 | Re-fix multiple-column non-primary key indexes | Andrey Andreev | 1 | -1/+1 | |
2012-11-05 | Fix Forge add_column() and modify_column() | Andrey Andreev | 1 | -2/+2 | |
2012-11-05 | Refactored DB Forge | Andrey Andreev | 1 | -63/+568 | |
- PDO subdrivers are isolated from each other now. - Added compatibility for pretty much all of the features, for every DB platform. - Unified the way that stuff works in general. - Fixes issue #1005. | |||||
2012-11-05 | Merge pull request #1948 from GDmac/develop | Alex Bilbie | 1 | -1/+1 | |
Fix #1946 dbforge add_key | |||||
2012-11-02 | DocBlocks for base DB classes | Andrey Andreev | 1 | -1/+50 | |
Partially fixes issue #1295. | |||||
2012-11-01 | Manually apply PR #1594 (fixing phpdoc page-level generation/warnings) | Andrey Andreev | 1 | -1/+2 | |
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files. | |||||
2012-10-31 | Fix #1946 dbforge add_key | GDmac | 1 | -1/+1 | |
add_key not setting multiple-column keys when given array Signed-off-by: GDmac <grdalenoort@gmail.com> | |||||
2012-10-24 | [ci skip] style and phpdoc-related changes (rel #1295) | Andrey Andreev | 1 | -5/+10 | |
2012-06-15 | Somebody double `$$`ed, causing error | Phil Sturgeon | 1 | -1/+1 | |
Severity: 4096 Message: Object of class CI_DB_mysql_forge could not be converted to string Filename: database/DB_forge.php Line Number: 234 | |||||
2012-06-11 | Fix issue #1264 | Andrey Andreev | 1 | -3/+51 | |
2012-06-02 | Replaced `==` with `===` and `!=` with `!==` in /system/database | Alex Bilbie | 1 | -11/+11 | |
2012-04-09 | Multiple DB Forge improvements | Andrey Andreev | 1 | -10/+51 | |
- Replaced driver methods _create_database(), _drop_database(), _drop_table() and _rename_table() with properties - Added defaults for the above mentioned platform-specific queries, so that not all drivers need to define them - Improved support for the SQLite, ODBC and PDO drivers | |||||
2012-03-20 | Remove extraneous newlines | Timothy Warren | 1 | -1/+1 | |
2012-03-19 | Made the rest of the db classes abstract \n | Timothy Warren | 1 | -1/+1 | |
except for the DB_cache class, because I'm not sure if it is directly called |