aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
Commit message (Expand)AuthorAgeFilesLines
* PostgreSQL returns the path type wrapped in quotes.Marcel Molina2005-10-092-2/+2
* Add geometric type for postgresql adapter. Closes #2233.Marcel Molina2005-10-091-0/+2
* Move require_library_or_gem out of AR's abstract_adapter and into ActiveSuppo...Marcel Molina2005-10-081-23/+0
* Don't tell me about defined reader methods, even at debug level.Jeremy Kemper2005-10-071-1/+0
* Add option (true by default) to generate reader methods for each attribute of...Marcel Molina2005-10-075-59/+130
* Add convenience predicate methods on Column class. In partial fullfilment of ...Marcel Molina2005-10-062-8/+29
* Raise an exception when invalid options are passed to ActiveRecord::Base.find...Marcel Molina2005-10-061-1/+7
* Remove straggling symbolize_strings_in_hash from [2427].Jeremy Kemper2005-10-062-2/+2
* Add rename_table to mysql, sqlite and postgres adapters for use in migrationsTobias Lütke2005-10-064-1/+20
* Allow in memory sqlite DBs when RAILS_ROOT is defined [blair@orcaware.com]Michael Koziarski2005-10-061-2/+4
* Quote booleans according the rules defined by the adapterMichael Koziarski2005-10-062-4/+8
* Added :force option to create_table that'll try to drop the table if it alrea...David Heinemeier Hansson2005-10-062-0/+6
* Schema dumper should emit ":default => false" if the default for a column is ...Jamis Buck2005-10-051-2/+2
* Forced newer versions of RedCloth to use hard breaks [DHH]David Heinemeier Hansson2005-10-021-2/+4
* Association validation does not belong in a before_save callback: move it int...Jeremy Kemper2005-10-023-44/+47
* Get rid of old symbolize_strings_in_hash.Jeremy Kemper2005-09-303-18/+9
* Ticket #2282 - fix parsing of timestamps with time zoneJeremy Kemper2005-09-301-1/+3
* No need to string.to_s right after checking that string.is_a?(String)Jeremy Kemper2005-09-301-3/+3
* Fix broken testcase for transactionsNicholas Seckar2005-09-291-6/+10
* Fix transactions so that calling return while inside a transaction will not l...Nicholas Seckar2005-09-281-4/+7
* Make schema definition column lookups agnostic w/r/t/ whether a key or symbol...Marcel Molina2005-09-281-2/+2
* Ticket #2156 - Use foreign_key inflection uniformlyJeremy Kemper2005-09-281-2/+2
* r3653@asus: jeremy | 2005-09-28 00:23:49 -0700Jeremy Kemper2005-09-282-2/+10
* Returning false in before_destroy should cancel action. Closes #1829.Scott Barron2005-09-281-2/+2
* Ticket 2256 - Recognize PostgreSQL NOW() default as equivalent to CURRENT_TIM...Jeremy Kemper2005-09-271-1/+1
* Add extensive documentation to the ActiveRecord::AbstractAdapter. #2250Marcel Molina2005-09-276-38/+210
* Oops, swapped order of params to COALESCE! Upcoming patch has test cases.Jeremy Kemper2005-09-271-1/+1
* Fix serialization problem with YAML in 1.8.3Scott Barron2005-09-271-14/+1
* r3613@asus: jeremy | 2005-09-26 22:25:04 -0700Jeremy Kemper2005-09-271-2/+2
* r3604@asus: jeremy | 2005-09-26 19:10:42 -0700Jeremy Kemper2005-09-261-20/+29
* Make update_attribute use the same writer method that update_attributes uses.Marcel Molina2005-09-262-2/+2
* Make migrations honor table name prefixes and suffixes.Marcel Molina2005-09-262-5/+16
* r3597@asus: jeremy | 2005-09-26 17:39:23 -0700Jeremy Kemper2005-09-261-5/+5
* r3590@asus: jeremy | 2005-09-26 17:00:53 -0700Jeremy Kemper2005-09-261-7/+43
* r3569@asus: jeremy | 2005-09-26 05:33:09 -0700Jeremy Kemper2005-09-261-6/+6
* Get rid of warnings generated by calling obsolete .to_a method on a SymbolMarcel Molina2005-09-261-4/+4
* Remove duplicate 'quote_column_name' definitionJamis Buck2005-09-251-5/+1
* Refactored the AbstractAdapter to be a lot less scary. Cleaned up the docs an...David Heinemeier Hansson2005-09-2511-710/+792
* Standardize the interpretation of boolean columns in the Mysql and Sqlite ada...Jamis Buck2005-09-253-7/+33
* Fix migrations with PG 7.x.Scott Barron2005-09-251-0/+13
* Okay, you can have an extra spaceDavid Heinemeier Hansson2005-09-251-0/+1
* Use assignment instead of callDavid Heinemeier Hansson2005-09-251-3/+1
* Use assignment instead of callDavid Heinemeier Hansson2005-09-251-6/+5
* Added new symbol-driven approach to activating observers with Base#observer [...David Heinemeier Hansson2005-09-252-1/+33
* Wrap :conditions in parentheses to prevent problems with OR's #1871Jamis Buck2005-09-242-2/+2
* Added AbstractAdapter#select_value and AbstractAdapter#select_values as conve...David Heinemeier Hansson2005-09-243-10/+15
* Just include activerecord/schema with AR so it doesnt need to be dumpedDavid Heinemeier Hansson2005-09-243-8/+2
* Make the sqlite adapter preserve not-null constraints and index names when al...Jamis Buck2005-09-241-3/+12
* Allow the postgresql adapter to work with the SchemaDumper.Jamis Buck2005-09-231-4/+48
* Post the postgresql adapter (and hopefully other adapters) pass all testsJamis Buck2005-09-232-4/+10