aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
Commit message (Expand)AuthorAgeFilesLines
* 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-251-1/+32
* 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-242-8/+1
* 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
* Make sqlite adapter pass all testsJamis Buck2005-09-231-3/+9
* Add ActiveRecord::SchemaDumper for dumping a DB schema to a pure-ruby file, m...Jamis Buck2005-09-235-24/+197
* Fixed migrations for Windows when using more than 10 [David Naseby]David Heinemeier Hansson2005-09-211-2/+4
* Fixed that the create_x method from belongs_to wouldn't save the association ...David Heinemeier Hansson2005-09-201-2/+2
* Fixed saving a record with two unsaved belongs_to associations pointing to th...Jamis Buck2005-09-202-5/+12
* Fixed memory leak with Active Record classes when Dependencies.mechanism = :l...David Heinemeier Hansson2005-09-201-0/+4
* Improved migrations' behavior when the schema_info table is empty.Nicholas Seckar2005-09-201-1/+1
* Fixed that Observers didn't observe sub-classes #627 [Florian Weber]David Heinemeier Hansson2005-09-191-1/+3
* Fix eager loading error messages, allow :include to specify tables using stri...Nicholas Seckar2005-09-181-2/+3
* Fixed various problems with has_and_belongs_to_many when using customer finde...David Heinemeier Hansson2005-09-131-6/+5
* Added dump of schema version to the db_structure_dump task for databases that...David Heinemeier Hansson2005-09-122-2/+12
* Rolled back broken #1814David Heinemeier Hansson2005-09-112-12/+1
* Refactored to a more readble form #1813David Heinemeier Hansson2005-09-112-4/+2
* Added better exception error when unknown column types are used with migratio...David Heinemeier Hansson2005-09-112-2/+13
* Use the inflector rules made for the purposeDavid Heinemeier Hansson2005-09-111-1/+1
* Fixed "connection lost" issue with the bundled Ruby/MySQL driver (would kill ...David Heinemeier Hansson2005-09-111-0/+6
* Fixed comparison of Active Record objects so two new objects are not equal #2...David Heinemeier Hansson2005-09-091-1/+4
* Fixed that the SQL Server adapter would sometimes return DBI::Timestamp objec...David Heinemeier Hansson2005-09-091-0/+1
* Refactored away all the legacy validate_options calls and replaced them with ...David Heinemeier Hansson2005-09-092-20/+15
* Added the instance methods #root and #ancestors on acts_as_tree and fixed sib...David Heinemeier Hansson2005-09-091-10/+28
* Added documentation for #1904David Heinemeier Hansson2005-09-081-0/+15
* An explicit include ClassInheritableAttributes is no longer needed #1948 [Cal...David Heinemeier Hansson2005-09-082-4/+0
* Fixed that Active Record would call SHOW FIELDS twice (or more) for the same ...David Heinemeier Hansson2005-09-081-1/+1
* Give AR the new benchmark method tooDavid Heinemeier Hansson2005-09-061-5/+8
* Fix fragment benchmark calls and limit timings to 5 decimalsDavid Heinemeier Hansson2005-09-061-1/+1
* Added use_silence parameter to ActiveRecord::Base.benchmark that can be passe...David Heinemeier Hansson2005-09-061-5/+11
* Make sure the schema_info table is created before querying the current versio...Jamis Buck2005-09-021-0/+1
* Fixtures ignore table name prefix and suffix #1987 [Jakob S]Jamis Buck2005-09-021-1/+3
* Add documentation for index_type argument to add_index method for migrations ...Jamis Buck2005-09-021-1/+1
* Modify read_attribute to allow a symbol argument #2024 [Ken Kunz]Jamis Buck2005-09-021-2/+3
* Revert [2040], caused assignment of belongs_to associations to fail in some c...Jamis Buck2005-08-241-5/+3
* Saving a record with two unsaved belongs_to associations pointing to the same...Jamis Buck2005-08-231-3/+5
* Make destroy return self #1913 [sebastian.kanthak@muehlheim.de]Jamis Buck2005-08-141-1/+1
* Fix typo in validations documentation #1938 [court3nay]Jamis Buck2005-08-141-1/+2
* Make acts_as_list work for insert_at(1) #1966 [hensleyl@papermountain.org]Jamis Buck2005-08-141-1/+1
* Fix typo in count_by_sql documentation #1969 [Alexey Verkhovsky]Jamis Buck2005-08-141-1/+1
* Allow add_column and create_table to specify NOT NULL #1712 [emptysands@gmail...Jamis Buck2005-07-302-7/+13
* Fix create_table so that id column is implicitly added [Rick Olson]Jamis Buck2005-07-271-5/+2