aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* TransactionManager should call rollback recordsArthur Neves2015-01-201-5/+5
* Merge pull request #18458 from brainopia/fix_after_commit_for_fixturesJeremy Kemper2015-01-201-4/+11
|\
| * after_commit runs after transactions with non-joinable parentsbrainopia2015-01-161-4/+11
* | Add an `:if_exists` option to `drop_table`Stefan Kanev2015-01-191-1/+1
|/
* Don't default to YAML dumping when quoting valuesSean Griffin2015-01-142-3/+8
* Merge pull request #18478 from yoshiokatsuneo/active_record_connection_pool_e...Sean Griffin2015-01-131-1/+2
|\
| * ActiveRecord: On reconnection failure, release only failed connetion.Yoshioka Tsuneo2015-01-131-1/+2
* | Deprecate passing a column to `quote`Sean Griffin2015-01-101-0/+6
* | Stop passing a column to `quote` when prepared statements are turned offSean Griffin2015-01-101-3/+3
* | Stop passing a column to `quote` in `insert_fixture`Sean Griffin2015-01-102-4/+14
* | Copy records to parent transaction should happen on TransactionManagerArthur Neves2015-01-091-3/+3
* | Use keyword args on committed! and rolledback!Arthur Neves2015-01-091-3/+3
|/
* ActiveRecord: release connection on reconnect failure.Yoshioka Tsuneo2015-01-091-0/+3
* Change transaction callbacks to not swallowing errors.Rafael Mendonça França2015-01-041-12/+2
* Change the default `null` value for `timestamps` to `false`Rafael Mendonça França2015-01-042-17/+5
* Return an array of pools from `connection_pools`Rafael Mendonça França2015-01-041-10/+1
* `sql_type` has been determined already when quoting defaultsRyuta Kamizono2015-01-041-4/+2
* Refactor `visit_ChangeColumnDefinition`Ryuta Kamizono2015-01-031-1/+1
* Add default value for `create_table_definition`Ryuta Kamizono2015-01-031-2/+2
* Merge pull request #17820 from fw42/restore_query_cache_on_rollbackRafael Mendonça França2015-01-023-3/+14
|\
| * Restore query cache on rollbackFlorian Weingarten2014-12-013-3/+14
* | Merge pull request #18228 from kamipo/correctly_dump_primary_keyRafael Mendonça França2015-01-021-0/+6
|\ \
| * | Improve a dump of the primary key support.Ryuta Kamizono2014-12-291-0/+6
* | | Merge pull request #18080 from korbin/fix_reaping_frequency_configurationRafael Mendonça França2015-01-021-1/+1
|\ \ \
| * | | fix issue with reaping_frequency typekorbin2014-12-171-1/+1
* | | | 💣 I forgot to commit the arity changeSean Griffin2015-01-011-1/+1
* | | | Stop passing the column to the connection adapter when quoting defaultsSean Griffin2015-01-011-2/+2
* | | | Extract the index length validation to a auxiliar methodRafael Mendonça França2014-12-301-3/+8
| |/ / |/| |
* | | Minor documentation edits [ci skip]Robin Dupret2014-12-281-6/+5
* | | Add bigint primary key support for MySQL.Ryuta Kamizono2014-12-282-1/+3
* | | Support for any type primary key.Ryuta Kamizono2014-12-281-1/+5
* | | reduce duplication in `ConnectionAdapters::Table` docs. [ci skip]Yves Senn2014-12-271-27/+38
* | | Refactor a common class to reduce the duplication for `references`Sean Griffin2014-12-232-59/+86
* | | Fix connection leak when a thread checks in additional connections.Matt Jones2014-12-231-4/+6
* | | Add `foreign_key` as an option to `references` for `change_table`Sean Griffin2014-12-222-4/+22
* | | Convert `add_references` to use kwargsSean Griffin2014-12-221-6/+18
* | | Add a `foreign_key` option to `references` while creating the tableSean Griffin2014-12-222-5/+34
* | | Convert `references` to kwargsSean Griffin2014-12-221-7/+17
* | | `force: :cascade` to recreate tables referenced by foreign-keys.Yves Senn2014-12-191-2/+7
|/ /
* | minor sentences fixesNeeraj Singh2014-12-071-3/+3
* | Failure to rollback t.timestamps when within a change_table migrationnoam2014-12-032-3/+3
* | no need to pass native_database_types aroundYves Senn2014-12-021-4/+4
* | Pass symbol as an argument instead of a blockErik Michaels-Ober2014-11-292-4/+2
* | Merge pull request #17799 from kamipo/refactor_add_column_optionsRafael Mendonça França2014-11-281-2/+2
|\ \
| * | Rename to `quote_default_expression` from `quote_value`Ryuta Kamizono2014-11-281-2/+2
| |/
* / Refactor `SchemaCreation#visit_AddColumn`Ryuta Kamizono2014-11-271-3/+1
|/
* raise a better exception for renaming long indexesAaron Patterson2014-11-201-0/+3
* synchronize code and docs for `timestamps` and `add_timestamps`.Yves Senn2014-11-202-8/+10
* Support symbol foreign key to deletedtaniwaki2014-11-191-1/+1
* Merge pull request #17580 from ccutrer/change_table_nameYves Senn2014-11-111-17/+19
|\