aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fixed spelling errors (closes #9706) [tarmo/rmm5t]David Heinemeier Hansson2007-09-282-4/+4
* Don't worry about retrieving the last inserted id. [tarmo_t]Jeremy Kemper2007-09-171-1/+1
* Speed up and simplify query caching.Jeremy Kemper2007-09-172-8/+117
* connection.select_rows 'sql' returns an array (rows) of arrays (field values)...Jeremy Kemper2007-09-161-2/+6
* RubyGem database adapters: expects a gem named activerecord-<database>-adapte...Jeremy Kemper2007-09-151-3/+19
* minor speedups + forward-compat syntaxJeremy Kemper2007-09-131-2/+2
* Fix spacingDavid Heinemeier Hansson2007-08-211-1/+1
* Improve performance and functionality of the postgresql adapter. Closes #804...Michael Koziarski2007-08-161-3/+7
* Refactored in use of extract_options! (closes #9079) [josh]David Heinemeier Hansson2007-07-241-1/+1
* Mock the beginning of the transaction also. References #8642.Jeremy Kemper2007-06-231-1/+1
* Rollback if commit raises an exception. Closes #8642.Jeremy Kemper2007-06-231-2/+9
* Rollback [6961] which breaks SQLite tests. Reference #7345.Jeremy Kemper2007-06-081-2/+1
* Migrations: raise if a column is duplicated. Closes #7345.Jeremy Kemper2007-06-071-1/+2
* Oracle binary fixtures; pull fixture insertion into the adapters. Closes #7987.Jeremy Kemper2007-05-261-0/+6
* Migrations: add_column supports custom column types. Closes #7742. First-patc...Jeremy Kemper2007-05-251-14/+17
* Load database adapters on demand. Eliminates config.connection_adapters and R...Jeremy Kemper2007-05-251-1/+6
* Replace the transaction {|transaction|..} semantics with a new Exception Acti...Michael Koziarski2007-05-181-8/+3
* Added short-hand declaration style to migrations (inspiration from Sexy Migra...David Heinemeier Hansson2007-05-061-1/+45
* DateTimes assume the default timezone. Closes #7764.Jeremy Kemper2007-03-091-2/+3
* Fix an edge case with dates during the Italian calendar reform! Hehe. Closes ...Jeremy Kemper2007-03-061-1/+6
* Added database connection as a yield parameter to ActiveRecord::Base.transact...David Heinemeier Hansson2007-02-211-1/+6
* Use Date#to_s(:db) for quoted dates. Closes #7411.Jeremy Kemper2007-01-281-6/+4
* Don't create instance writer methods for class attributes. Closes #7401 [Rick]Rick Olson2007-01-281-1/+1
* Improve handling of LoadErrors with the oracle adapter. Closes #6780 [kubo]Michael Koziarski2007-01-161-1/+1