aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* 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
* Make clear_reloadable_connections! take account of @@allow_concurrency. Clos...Michael Koziarski2007-10-251-4/+17
* Add t.belongs_to and t.references to sexy migrations [arthurgeek]Michael Koziarski2007-10-191-0/+30
* Quote table names. Defaults to column quoting. Closes #4593.Jeremy Kemper2007-10-163-19/+23
* Fix join table docs error in schema_statements. Closes #9880 [lawrence]Jeremy Kemper2007-10-161-1/+1
* Factor out checks for duplicable objects. Closes #9333.Jeremy Kemper2007-10-151-5/+2
* Dr Math meets Captain Obvious.Jeremy Kemper2007-10-081-1/+1
* Use fast date/time parsing by default. Closes #9811.Jeremy Kemper2007-10-071-5/+33
* Reinstate failsafe date/time parsing rescues. Head off some obvious failures ...Jeremy Kemper2007-10-071-4/+13
* MySQL: speedup date/time parsing.Jeremy Kemper2007-10-071-58/+64
* Send the correct INSERT statement when dealing with objects with only primary...Michael Koziarski2007-10-061-0/+4
* Try loading activerecord-<adaptername>-adapter gem before trying a plain requ...Jeremy Kemper2007-10-041-8/+3