| Commit message (Expand) | Author | Age | Files | Lines |
* | Fixed to_xml across the board to use nice indention, better skip_attributes w... | David Heinemeier Hansson | 2006-03-09 | 1 | -0/+37 |
* | Allow counter_cache to accept a column name | Jamis Buck | 2006-03-09 | 1 | -0/+2 |
* | format fix for locking [Michael Koziarski] | Michael Koziarski | 2006-03-09 | 1 | -0/+2 |
* | Allow set_fixture_class to take Classes instead of strings for a class in a m... | Rick Olson | 2006-03-06 | 1 | -0/+2 |
* | Fix quoting of inheritance column for STI eager loading #4098 [Jonathan Viney... | Rick Olson | 2006-03-06 | 1 | -0/+2 |
* | slight change to eager associations table aliasing: use class_reflection, lik... | Rick Olson | 2006-03-06 | 1 | -2/+2 |
* | Fixed eager loading problems with single-table inheritance [Rick Olson] Added... | David Heinemeier Hansson | 2006-03-05 | 1 | -0/+11 |
* | Added cascading eager loading that allows for queries like Author.find(:all, ... | David Heinemeier Hansson | 2006-03-04 | 1 | -0/+29 |
* | Make counter cache work when replacing an association (closes #3245). Thanks ... | Jamis Buck | 2006-03-04 | 1 | -0/+2 |
* | Make migrations verbose | Jamis Buck | 2006-03-04 | 1 | -0/+2 |
* | Make counter_cache work with polymorphic belongs_to | Jamis Buck | 2006-03-04 | 1 | -0/+2 |
* | Fixed that calling HasOneProxy#build_model repeatedly would cause saving to h... | David Heinemeier Hansson | 2006-03-03 | 1 | -0/+2 |
* | Added Sybase database adapter that relies on the Sybase Open Client bindings ... | David Heinemeier Hansson | 2006-03-02 | 1 | -0/+7 |
* | Clear stale, cached connections left behind by defunct threads. Eliminate dup... | Jeremy Kemper | 2006-03-01 | 1 | -0/+2 |
* | CHANGED DEFAULT: set ActiveRecord::Base.allow_concurrency to false. Most AR ... | Jeremy Kemper | 2006-03-01 | 1 | -0/+2 |
* | Renamed the "oci" adapter to "oracle", but kept the old name as an alias (clo... | David Heinemeier Hansson | 2006-03-01 | 1 | -0/+2 |
* | Fixed tests | David Heinemeier Hansson | 2006-02-28 | 1 | -0/+2 |
* | Speed up class -> connection caching and stale connection verification. Close... | Jeremy Kemper | 2006-02-27 | 1 | -0/+2 |
* | Fix delerious changelog | Nicholas Seckar | 2006-02-27 | 1 | -1/+1 |
* | Add set_fixture_class to allow the use of table name accessors with models wh... | Nicholas Seckar | 2006-02-27 | 1 | -0/+2 |
* | Added that fixtures to placed in subdirectories of the main fixture files are... | David Heinemeier Hansson | 2006-02-27 | 1 | -0/+2 |
* | Define attribute query methods to avoid method_missing calls. Closes #3677. | Jeremy Kemper | 2006-02-27 | 1 | -0/+2 |
* | ActiveRecord::Base.remove_connection explicitly closes database connections a... | Jeremy Kemper | 2006-02-26 | 1 | -0/+2 |
* | Added support for nested scopes (closes #3407) [anna@wota.jp] | David Heinemeier Hansson | 2006-02-26 | 1 | -0/+16 |
* | Fixed db2 connection with empty user_name and auth options (closes #3622) [ph... | David Heinemeier Hansson | 2006-02-26 | 1 | -0/+2 |
* | Fixed validates_length_of to work on UTF-8 strings by using characters instea... | David Heinemeier Hansson | 2006-02-25 | 1 | -0/+2 |
* | Fixed that reflections would bleed across class boundaries in single-table in... | David Heinemeier Hansson | 2006-02-25 | 1 | -0/+2 |
* | Added calculations: Base.count, Base.average, Base.sum, Base.minimum, Base.ma... | David Heinemeier Hansson | 2006-02-25 | 1 | -0/+7 |
* | Renamed Errors#count to Errors#size but kept an alias for the old name (and i... | David Heinemeier Hansson | 2006-02-23 | 1 | -0/+2 |
* | Reflections don't attempt to resolve module nesting of association classes. S... | Jeremy Kemper | 2006-02-22 | 1 | -0/+2 |
* | Improved the Oracle OCI Adapter with better performance for column reflection... | David Heinemeier Hansson | 2006-02-21 | 1 | -0/+4 |
* | Added :count option to pagination that'll make it possible for the ActiveReco... | David Heinemeier Hansson | 2006-02-20 | 1 | -0/+2 |
* | Fix Syntax error in mysql.sql, Drop table readers and run aaa_create_tables f... | Michael Koziarski | 2006-02-10 | 1 | -0/+2 |
* | Allow has_many :through to work with :include [Michael Schoen]. Closes #3611 | Michael Koziarski | 2006-02-10 | 1 | -0/+2 |
* | PostgreSQL: smarter schema dumps using pk_and_sequence_for(table). Closes #2920. | Jeremy Kemper | 2006-02-09 | 1 | -0/+2 |
* | SQLServer: more compatible limit/offset emulation. Closes #3779. | Jeremy Kemper | 2006-02-09 | 1 | -0/+2 |
* | Polymorphic join support for has_one associations (has_one :foo, :as => :bar)... | Jeremy Kemper | 2006-02-09 | 1 | -0/+2 |
* | PostgreSQL: correctly parse negative integer column defaults. References #3776. | Jeremy Kemper | 2006-02-09 | 1 | -0/+2 |
* | * Fix pagination problems when using include | Michael Koziarski | 2006-02-09 | 1 | -0/+2 |
* | ActiveRecord::RecordInvalid now states which validations failed in its defaul... | Tobias Lütke | 2006-02-05 | 1 | -0/+2 |
* | Using AssociationCollection#build with arrays of hashes should call build, no... | David Heinemeier Hansson | 2006-02-03 | 1 | -0/+2 |
* | Remove definition of reloadable? from ActiveRecord::Base to make way for new ... | Nicholas Seckar | 2006-02-02 | 1 | -0/+2 |
* | Fixed schema handling for DB2 adapter that didn't work: an initial schema cou... | David Heinemeier Hansson | 2006-02-01 | 1 | -0/+2 |
* | Silly me | David Heinemeier Hansson | 2006-02-01 | 1 | -2/+0 |
* | Added Errors#any? to mean !Errors#empty? [DHH] | David Heinemeier Hansson | 2006-02-01 | 1 | -0/+2 |
* | Support the :column option for remove_index with the PostgreSQL adapter. Clos... | Marcel Molina | 2006-01-31 | 1 | -0/+2 |
* | Add documentation for add_index and remove_index. Closes #3600. | Marcel Molina | 2006-01-25 | 1 | -0/+2 |
* | If the OCI library is not available, raise an exception indicating as much. C... | Marcel Molina | 2006-01-25 | 1 | -0/+2 |
* | Add explicit :order in finder tests as postgresql orders results differently ... | Marcel Molina | 2006-01-22 | 1 | -0/+2 |
* | Make dynamic finders honor additional passed in :conditions. Closes #3569. | Marcel Molina | 2006-01-22 | 1 | -0/+2 |