aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
...
* Introduce synchronization around connection pool accessNick2008-08-292-21/+43
* Rename defined_connections to connection_poolsNick2008-08-291-10/+20
* Initial conversion to connection poolNick2008-08-292-171/+155
* Make query-cache thread-localNick Sieger2008-08-291-14/+29
* Don't set "NULL" as a constraint on nullable columns [#398 state:resolved]Tarmo Tänav2008-08-231-6/+2
* coerce blank strings to nil values for boolean and integer fieldsJosh Susser2008-08-221-1/+5
* Ensure t.timestamps respects options. [#828 state:resolved]Patrick Reagan2008-08-221-3/+4
* Revert "Performance: freeze cached rows instead of duping"Jeremy Kemper2008-08-211-4/+13
* Revert "coerce blank strings to nil values for boolean and integer fields"Jeremy Kemper2008-08-211-5/+1
* coerce blank strings to nil values for boolean and integer fieldsJosh Susser2008-08-211-1/+5
* Performance: freeze cached rows instead of dupingJeremy Kemper2008-08-181-13/+4
* validates_uniqueness_of uses database case sensitivity support instead of usi...Tarmo Tänav2008-07-311-0/+4
* Revert "Ensure adapater specific code is loaded on ActiveRecord::Base.establi...Joshua Peek2008-07-271-1/+0
* Ensure adapater specific code is loaded on ActiveRecord::Base.establish_conne...Joshua Peek2008-07-211-0/+1
* Merge with docrails.Pratik Naik2008-07-161-1/+1
* Faster and clearer value_to_booleanJeremy Kemper2008-07-141-5/+4
* Fixed that create database statements would always include "DEFAULT NULL" (Ni...David Heinemeier Hansson2008-07-141-1/+4
* Boolean type casting creates fewer objectsJeremy Kemper2008-07-091-1/+1
* MySQL: treat integer with :limit => 11 as a display width, not byte size, for...Jeremy Kemper2008-06-271-2/+1
* Performance: minor Column#text? and #number? speedupsJeremy Kemper2008-06-251-2/+2
* Don't append limit to primary key column definition. Freeze some constants.Jeremy Kemper2008-06-081-2/+2
* Give a nice message if there are duplicate migrations instead of raising a st...Jeremy Kemper2008-06-041-3/+14
* Added SQL escaping for :limit and :offset [#288 state:closed] (Aaron Bedra, S...David Heinemeier Hansson2008-05-311-2/+7
* Merge docrails.Pratik Naik2008-05-254-20/+20
* Make sure clone_structure can load the results of dump_schema_informationSteven Soroka2008-05-171-1/+1
* Merge documentation changes from docrails.Pratik Naik2008-05-162-56/+54
* Merge docrails:Pratik Naik2008-05-091-0/+6
* create_table :force => true no longer tries to drop a non-existing tableTarmo Tänav2008-05-071-2/+2
* Added AbstractAdapter#table_exists? and made AbstractAdapter#table implementa...Tarmo Tänav2008-05-071-0/+4
* Restore dump_schema_information connection adapter methodKyle Hargraves2008-05-051-0/+6
* Added change_table for migrations (Jeff Dean) [#71 state:resolved]David Heinemeier Hansson2008-05-032-4/+259
* Improve documentation coverage and markupXavier Noria2008-05-023-4/+5
* Fixed that change_column should be able to use :null => true on a field that ...David Heinemeier Hansson2008-04-291-1/+8
* Add support for interleaving migrations by storing which migrations have run ...Rick Olson2008-04-091-21/+29
* Improve documentation.Pratik Naik2008-04-051-3/+3
* Switched to UTC-timebased version numbers for migrations and the schema. This...David Heinemeier Hansson2008-03-281-4/+12
* Migrations: create_table supports primary_key_prefix_type. Closes #10314.Jeremy Kemper2008-03-181-1/+1
* Added add/remove_timestamps to the schema statements for adding the created_a...David Heinemeier Hansson2008-03-131-0/+16
* Refactor ActiveRecord::ConnectionAdapters::Column.new_time: leverage DateTime...Geoff Buesing2008-02-161-6/+2
* Optimisation for BigDecimal conversion code. Closes #11110 [adymo]Michael Koziarski2008-02-141-1/+4
* Fix issue where Table#references doesn't pass a :null option to a *_type attr...Rick Olson2008-01-111-3/+1
* Ruby 1.9 compat: don't use obsolete ParseDateJeremy Kemper2008-01-031-1/+1
* Ruby 1.9 compat: fix warnings, shadowed block vars, and unitialized instance ...Jeremy Kemper2007-12-222-3/+3
* Ruby 1.9 compat: check column type more carefullyJeremy Kemper2007-12-192-11/+16
* Reveal that the type option in migrations can be any supported column type fo...Marcel Molina2007-12-051-1/+6
* Document the timestamps schema definition method. Closes #9000 [mikong]Marcel Molina2007-12-051-0/+2
* Honor Ruby's default calendar reform setting when creating DateTime objects v...Geoff Buesing2007-11-241-2/+1
* Smattering of grammatical fixes to documentation. Closes #10083 [BobSilva]Marcel Molina2007-11-084-11/+12
* Standardize on using hyphens rather than colons to separate option names from...Marcel Molina2007-11-061-5/+5
* Use the safe conversion code introduced in earlier commit. References #10068...Michael Koziarski2007-11-051-1/+1