index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activerecord
/
lib
/
active_record
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Fixed various problems with has_and_belongs_to_many when using customer finde...
David Heinemeier Hansson
2005-09-13
1
-6
/
+5
*
Added dump of schema version to the db_structure_dump task for databases that...
David Heinemeier Hansson
2005-09-12
2
-2
/
+12
*
Rolled back broken #1814
David Heinemeier Hansson
2005-09-11
2
-12
/
+1
*
Refactored to a more readble form #1813
David Heinemeier Hansson
2005-09-11
2
-4
/
+2
*
Added better exception error when unknown column types are used with migratio...
David Heinemeier Hansson
2005-09-11
2
-2
/
+13
*
Use the inflector rules made for the purpose
David Heinemeier Hansson
2005-09-11
1
-1
/
+1
*
Fixed "connection lost" issue with the bundled Ruby/MySQL driver (would kill ...
David Heinemeier Hansson
2005-09-11
1
-0
/
+6
*
Fixed comparison of Active Record objects so two new objects are not equal #2...
David Heinemeier Hansson
2005-09-09
1
-1
/
+4
*
Fixed that the SQL Server adapter would sometimes return DBI::Timestamp objec...
David Heinemeier Hansson
2005-09-09
1
-0
/
+1
*
Refactored away all the legacy validate_options calls and replaced them with ...
David Heinemeier Hansson
2005-09-09
2
-20
/
+15
*
Added the instance methods #root and #ancestors on acts_as_tree and fixed sib...
David Heinemeier Hansson
2005-09-09
1
-10
/
+28
*
Added documentation for #1904
David Heinemeier Hansson
2005-09-08
1
-0
/
+15
*
An explicit include ClassInheritableAttributes is no longer needed #1948 [Cal...
David Heinemeier Hansson
2005-09-08
2
-4
/
+0
*
Fixed that Active Record would call SHOW FIELDS twice (or more) for the same ...
David Heinemeier Hansson
2005-09-08
1
-1
/
+1
*
Give AR the new benchmark method too
David Heinemeier Hansson
2005-09-06
1
-5
/
+8
*
Fix fragment benchmark calls and limit timings to 5 decimals
David Heinemeier Hansson
2005-09-06
1
-1
/
+1
*
Added use_silence parameter to ActiveRecord::Base.benchmark that can be passe...
David Heinemeier Hansson
2005-09-06
1
-5
/
+11
*
Make sure the schema_info table is created before querying the current versio...
Jamis Buck
2005-09-02
1
-0
/
+1
*
Fixtures ignore table name prefix and suffix #1987 [Jakob S]
Jamis Buck
2005-09-02
1
-1
/
+3
*
Add documentation for index_type argument to add_index method for migrations ...
Jamis Buck
2005-09-02
1
-1
/
+1
*
Modify read_attribute to allow a symbol argument #2024 [Ken Kunz]
Jamis Buck
2005-09-02
1
-2
/
+3
*
Revert [2040], caused assignment of belongs_to associations to fail in some c...
Jamis Buck
2005-08-24
1
-5
/
+3
*
Saving a record with two unsaved belongs_to associations pointing to the same...
Jamis Buck
2005-08-23
1
-3
/
+5
*
Make destroy return self #1913 [sebastian.kanthak@muehlheim.de]
Jamis Buck
2005-08-14
1
-1
/
+1
*
Fix typo in validations documentation #1938 [court3nay]
Jamis Buck
2005-08-14
1
-1
/
+2
*
Make acts_as_list work for insert_at(1) #1966 [hensleyl@papermountain.org]
Jamis Buck
2005-08-14
1
-1
/
+1
*
Fix typo in count_by_sql documentation #1969 [Alexey Verkhovsky]
Jamis Buck
2005-08-14
1
-1
/
+1
*
Allow add_column and create_table to specify NOT NULL #1712 [emptysands@gmail...
Jamis Buck
2005-07-30
2
-7
/
+13
*
Fix create_table so that id column is implicitly added [Rick Olson]
Jamis Buck
2005-07-27
1
-5
/
+2
*
Made Oracle a first-class connection adapter by adhering closer to idiomatic ...
David Heinemeier Hansson
2005-07-24
8
-33
/
+133
*
Dont be ambigious about the condition key
David Heinemeier Hansson
2005-07-22
2
-3
/
+2
*
Added support for calling constrained class methods on has_many and has_and_b...
David Heinemeier Hansson
2005-07-22
7
-64
/
+111
*
Added migration support for SQLite (using temporary tables to simulate ALTER ...
David Heinemeier Hansson
2005-07-22
2
-17
/
+143
*
Remove extra definition of supports_migrations? from abstract_adaptor.rb
Nicholas Seckar
2005-07-22
1
-4
/
+0
*
Doc fixes #1775, #1776 [jon@instance-design.co.uk]
David Heinemeier Hansson
2005-07-22
1
-1
/
+1
*
A bit more work on the still unfinished query cache #1722
David Heinemeier Hansson
2005-07-22
1
-3
/
+3
*
Fix acts_as_list such that moving next-to-last item to the bottom does not re...
Jamis Buck
2005-07-20
1
-5
/
+7
*
Allow unspecified join-table columns to use to their default values when addi...
Jamis Buck
2005-07-18
1
-2
/
+4
*
Fixed incompatibility in DB2 adapter with the new limit/offset approach #1718...
David Heinemeier Hansson
2005-07-17
3
-10
/
+9
*
Added :select option to find which can specify a different value than the def...
David Heinemeier Hansson
2005-07-14
1
-1
/
+3
*
Added support for limit and offset with eager loading of has_one and belongs_...
David Heinemeier Hansson
2005-07-11
2
-9
/
+31
*
Fixed that assume_bottom_position (in acts_as_list) could be called on items ...
David Heinemeier Hansson
2005-07-10
1
-1
/
+1
*
Fixed that each request with the WEBrick adapter would open a new database co...
David Heinemeier Hansson
2005-07-10
3
-8
/
+18
*
r2979@asus: jeremy | 2005-07-10 01:51:00 -0700
Jeremy Kemper
2005-07-10
2
-31
/
+33
*
better error message for missing associations #1631 [courtenay]
David Heinemeier Hansson
2005-07-09
1
-4
/
+11
*
Fixed optimistic locking with SQL Server #1660 [tom@popdog.net]
David Heinemeier Hansson
2005-07-09
1
-2
/
+2
*
Fixed SQL Server test #1678 [Tom Ward]
David Heinemeier Hansson
2005-07-09
1
-1
/
+1
*
Made target migrations actually work
David Heinemeier Hansson
2005-07-09
1
-3
/
+5
*
Added a VERSION parameter to the migrate task that allows you to do "rake mig...
David Heinemeier Hansson
2005-07-09
1
-0
/
+23
*
Added better error message for "packets out of order" #1630 [courtenay]
David Heinemeier Hansson
2005-07-08
1
-0
/
+2
[prev]
[next]