aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #18888 from kamipo/refactor_quote_default_expressionRafael Mendonça França2015-02-114-18/+12
|\
| * Refactor `quote_default_expression`Ryuta Kamizono2015-02-114-18/+12
* | Remove the SQLite3 Binary subclassSean Griffin2015-02-111-18/+0
* | Remove an unused option that I didn't mean to commit [ci skip]Sean Griffin2015-02-111-2/+1
* | Remove most PG specific type subclassesSean Griffin2015-02-1112-89/+52
* | Merge pull request #18883 from kamipo/fix_datetime_precision_dumping_zero_for...Sean Griffin2015-02-112-1/+7
|\ \
| * | The datetime precision with zero should be dumpedRyuta Kamizono2015-02-112-1/+7
| |/
* | fix `remove_reference` with `foreign_key: true` on MySQL. #18664.Yves Senn2015-02-111-0/+6
* | Merge pull request #18890 from kamipo/remove_cast_typeYves Senn2015-02-111-1/+1
|\ \
| * | Remove `cast_type` in `ColumnDefinition`Ryuta Kamizono2015-02-111-1/+1
| |/
* / Use keyword argument in `transaction`Ryuta Kamizono2015-02-111-6/+4
|/
* Refactor microsecond precision to be database agnosticSean Griffin2015-02-105-46/+32
* Merge pull request #18849 from kamipo/array_type_is_a_part_of_sql_typeSean Griffin2015-02-092-19/+4
|\
| * An array type is a part of `sql_type`Ryuta Kamizono2015-02-082-19/+4
* | Fix rounding problem for PostgreSQL timestamp columnRyuta Kamizono2015-02-082-12/+13
* | Merge pull request #18602 from kamipo/respect_database_charset_and_collationAndrew White2015-02-081-1/+1
|\ \
| * | Respect the database default charset for `schema_migrations` table.Ryuta Kamizono2015-02-081-1/+1
| |/
* / Add `auto_increment?` instead of `extra == 'auto_increment'`Ryuta Kamizono2015-02-081-2/+6
|/
* rm `Type#text?`Sean Griffin2015-02-073-5/+28
* Move non-type objects into the `Type::Helpers` namespaceSean Griffin2015-02-074-4/+4
* Allow a symbol to be passed to `attribute`, in place of a type objectSean Griffin2015-02-066-1/+83
* fix transaction rollback in case of aborting threadYuri Smirnov2015-02-051-1/+1
* Add default options to 'bit' and 'bit_varying' methodsMelody2015-02-031-2/+2
* Adds default options hash for postgres money typeMelody Berton2015-02-031-1/+1
* rm `Column#cast_type`Sean Griffin2015-02-0310-74/+163
* Merge pull request #18791 from Sinjo/consistent-foreign-key-name-generationSean Griffin2015-02-021-1/+5
|\
| * Generate consistent names for foreign keysChris Sinjakli2015-02-031-1/+5
* | Properly lookup the limit for bigintSean Griffin2015-02-021-1/+6
|/
* Remove unused `Column#with_type`Sean Griffin2015-02-021-6/+0
* push add to transaction logic down to the instanceAaron Patterson2015-02-012-5/+5
* stop making calls to add_recordAaron Patterson2015-02-011-1/+1
* Remove most type related predicates from `Column`Sean Griffin2015-01-302-7/+4
* Remove most uses of `Column#cast_type`Sean Griffin2015-01-305-12/+44
* Always convert strings to UTF-8, regardless of column type in SQLiteSean Griffin2015-01-281-11/+6
* Remove Relation#bind_paramsSean Griffin2015-01-276-26/+14
* Errors raised in `type_cast_for_database` no longer raise on assignmentSean Griffin2015-01-231-1/+1
* Don't error when invalid json is assigned to a JSON columnSean Griffin2015-01-211-1/+1
* 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-193-3/+3
|/
* Time columns should support time zone aware attributesSean Griffin2015-01-151-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-102-4/+5
* | Stop passing a column to `quote` in `insert_fixture`Sean Griffin2015-01-102-4/+14
* | Fix typo in PostresSQLAdapter's documentationSebastian Staudt2015-01-101-1/+1
* | Copy records to parent transaction should happen on TransactionManagerArthur Neves2015-01-091-3/+3