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
/
test
Commit message (
Expand
)
Author
Age
Files
Lines
*
Allow unspecified join-table columns to use to their default values when addi...
Jamis Buck
2005-07-18
7
-6
/
+32
*
Fixed incompatibility in DB2 adapter with the new limit/offset approach #1718...
David Heinemeier Hansson
2005-07-17
2
-1
/
+3
*
Make all tests pass on PGSQL #1759 [Rick Olson]
David Heinemeier Hansson
2005-07-17
1
-4
/
+4
*
Added :select option to find which can specify a different value than the def...
David Heinemeier Hansson
2005-07-14
1
-0
/
+4
*
Added support for limit and offset with eager loading of has_one and belongs_...
David Heinemeier Hansson
2005-07-11
1
-2
/
+43
*
Fixed that each request with the WEBrick adapter would open a new database co...
David Heinemeier Hansson
2005-07-10
1
-0
/
+34
*
r2979@asus: jeremy | 2005-07-10 01:51:00 -0700
Jeremy Kemper
2005-07-10
2
-23
/
+30
*
better error message for missing associations #1631 [courtenay]
David Heinemeier Hansson
2005-07-09
1
-0
/
+12
*
Added a VERSION parameter to the migrate task that allows you to do "rake mig...
David Heinemeier Hansson
2005-07-09
1
-0
/
+15
*
Fix regression from [1631] that caused an attribute to be set to nil if it wa...
Jamis Buck
2005-07-05
1
-0
/
+6
*
Made default changes work in both postgresql and mysql #1612 [Tobias Luetke]
David Heinemeier Hansson
2005-07-05
1
-0
/
+2
*
Added callbacks on push_with_attributes #1594 [Florian Weber]
David Heinemeier Hansson
2005-07-05
1
-11
/
+21
*
Sugared up migrations with even more bling #1609 [Tobias Luekte]
David Heinemeier Hansson
2005-07-05
2
-9
/
+66
*
Simplify aaa_create_tables_test
Jeremy Kemper
2005-07-05
1
-48
/
+26
*
Include all tables in mysql, sqlite, and postgresql drop sql.
Jeremy Kemper
2005-07-05
3
-1
/
+7
*
Added new Migrations framework for describing schema transformations in a way...
David Heinemeier Hansson
2005-07-04
2
-104
/
+139
*
Make postgres8 ar tests work #1601 [Tobias Luetke]
David Heinemeier Hansson
2005-07-04
1
-2
/
+3
*
Tests for association callbacks
David Heinemeier Hansson
2005-07-04
1
-0
/
+100
*
Added callback hooks to association collections #1549 [Florian Weber]
David Heinemeier Hansson
2005-07-04
2
-0
/
+50
*
Fixed Base.content_columns call for SQL Server adapter #1450 [DeLynn Berry] A...
David Heinemeier Hansson
2005-07-03
1
-1
/
+5
*
Fixed Base#write_attribute to work with both symbols and strings #1190 [Paul ...
David Heinemeier Hansson
2005-07-03
1
-0
/
+9
*
Fixed that has_and_belongs_to_many didn't respect single table inheritance ty...
David Heinemeier Hansson
2005-07-03
11
-8
/
+32
*
Fixed that single-table inheritance sub-classes couldn't be used to limit the...
David Heinemeier Hansson
2005-07-03
14
-13
/
+130
*
Fixed validates_numericality_of to work with overrided getter-method when :al...
David Heinemeier Hansson
2005-07-02
1
-0
/
+7
*
Clarified intentions of validates_associated #870
David Heinemeier Hansson
2005-07-02
1
-1
/
+11
*
Added support for ODBC connections to MS SQL Server so you can connect from a...
David Heinemeier Hansson
2005-07-01
9
-13
/
+83
*
Fixed that multiparameter posts ignored attr_protected #1532 [alec+rails@very...
David Heinemeier Hansson
2005-06-28
1
-0
/
+13
*
Updated all references to the old find_first and find_all to use the new styl...
David Heinemeier Hansson
2005-06-26
8
-68
/
+68
*
Fixed Base#find to honor the documentation on how :joins work and make them c...
David Heinemeier Hansson
2005-06-25
1
-2
/
+5
*
Fixed that validations didn't respecting custom setting for too_short, too_lo...
David Heinemeier Hansson
2005-06-25
1
-0
/
+9
*
Fixed that clear_association_cache doesn't delete new associations on new rec...
David Heinemeier Hansson
2005-06-25
1
-0
/
+21
*
Pass association finder arguments through to the association class exactly as...
Jeremy Kemper
2005-06-24
1
-1
/
+1
*
Fixed that calling Model.find([]) returns [] and doesn't throw an exception #...
David Heinemeier Hansson
2005-06-21
1
-0
/
+4
*
Removed the AR::Recursion module--it broke more code than it fixed
Jamis Buck
2005-06-21
2
-14
/
+38
*
Proper order in test #1329
David Heinemeier Hansson
2005-06-21
1
-2
/
+2
*
Fixed that adding a record to a has_and_belongs_to collection would always sa...
David Heinemeier Hansson
2005-06-18
7
-2
/
+30
*
Fix quote_bound_value to not map Strings #1416 [htonl]
David Heinemeier Hansson
2005-06-16
1
-0
/
+4
*
Allow any Enumerable, not just Array, to work as bind variables #1344 [bitsweat]
David Heinemeier Hansson
2005-06-16
1
-1
/
+8
*
Added actual database-changing behavior to collection assigment for has_many ...
David Heinemeier Hansson
2005-06-16
1
-0
/
+59
*
r1307@iwill: jeremy | 2005-06-13 19:05:00 -0700
Jeremy Kemper
2005-06-13
2
-5
/
+9
*
Be sure to use the @finder_sql in the has_many association's #find method, ev...
Jamis Buck
2005-06-13
5
-16
/
+37
*
Added ActiveRecord::Recursion to guard against recursive calls to #save
Jamis Buck
2005-06-13
1
-2
/
+37
*
r1294@iwill: jeremy | 2005-06-13 02:17:42 -0700
Jeremy Kemper
2005-06-13
1
-2
/
+11
*
r1278@iwill: jeremy | 2005-06-12 05:11:48 -0700
Jeremy Kemper
2005-06-12
2
-2
/
+63
*
Return PostgreSQL columns in the order they are declared #1374 (perlguy@gmail...
Jeremy Kemper
2005-06-12
2
-1
/
+6
*
Don't expect fixtures to be returned in the order they were inserted.
Jeremy Kemper
2005-06-12
2
-5
/
+6
*
Don't expect fixtures to be returned in the order they were inserted.
Jeremy Kemper
2005-06-11
2
-3
/
+4
*
Preserve extendedWarranty case in PostgreSQL computers table.
Jeremy Kemper
2005-06-11
1
-1
/
+1
*
Do not use instantiated fixtures (in general) in tests. Also, support the use...
Jamis Buck
2005-06-10
21
-221
/
+226
*
Eager loading of dependent has_one associations won't delete the association ...
Jamis Buck
2005-06-10
4
-119
/
+119
[next]