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
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
SQL Server needs to quote booleans just like MySQL 1/0
David Heinemeier Hansson
2005-10-14
1
-0
/
+8
*
Avoid memleak in dev mode with fastcgi
Jamis Buck
2005-10-14
2
-4
/
+11
*
Back out of [2548].
Marcel Molina
2005-10-14
1
-18
/
+18
*
DRYed up Associations#clear. Closes #1906 [Caleb]
Tobias Lütke
2005-10-14
6
-36
/
+37
*
Delegate access to a customized primary key to the conventional id method. Cl...
Marcel Molina
2005-10-13
3
-2
/
+6
*
Fix errors caused by assigning a has-one or belongs-to property to itself
Jamis Buck
2005-10-13
4
-3
/
+15
*
r3581@sedna: jeremy | 2005-10-13 12:20:42 -0700
Jeremy Kemper
2005-10-13
1
-1
/
+7
*
r3579@sedna: jeremy | 2005-10-13 12:02:01 -0700
Jeremy Kemper
2005-10-13
1
-4
/
+2
*
r3577@sedna: jeremy | 2005-10-13 11:55:20 -0700
Jeremy Kemper
2005-10-13
1
-0
/
+17
*
Support using different database adapters for development and test with Activ...
Sam Stephenson
2005-10-13
2
-0
/
+11
*
Optimize postgresql selects.
Marcel Molina
2005-10-13
2
-18
/
+20
*
Update DB2 adapter. Closes #2206.
Marcel Molina
2005-10-12
3
-2
/
+38
*
Corrections to SQLServer native data types. Closes #2267.
Marcel Molina
2005-10-12
2
-10
/
+12
*
Deprecated ActiveRecord::Base.threaded_connection in favor of ActiveRecord::B...
Marcel Molina
2005-10-12
4
-8
/
+21
*
Protect id attribute from mass assigment even when the primary key is set to ...
Marcel Molina
2005-10-12
3
-3
/
+25
*
Add test coverage for customized primary keys including a failing test for #2...
Marcel Molina
2005-10-12
16
-6
/
+65
*
Misc doc fixes (typos/grammar/etc.). Closes #2430.
Marcel Molina
2005-10-11
2
-37
/
+39
*
Add test coverage for content_columns. Closes #2432.
Marcel Molina
2005-10-11
2
-1
/
+6
*
Fix typo in CHANGELOG.
Marcel Molina
2005-10-11
1
-1
/
+1
*
Speed up for unthreaded environments. Closes #2431.
Marcel Molina
2005-10-11
2
-6
/
+20
*
Optimization for Mysql selects using mysql-ruby extension greater than 2.6.3....
Marcel Molina
2005-10-11
2
-3
/
+17
*
Speed up the setting of table_name. Closes #2428.
Marcel Molina
2005-10-10
4
-1
/
+29
*
move lib/version.rb to lib/active_record/version.rb
Jamis Buck
2005-10-10
2
-1
/
+1
*
Optimize instantiation of STI subclass records. In partial fullfilment of #1236.
Marcel Molina
2005-10-09
2
-15
/
+20
*
Fix typo of 'constrains' to 'contraints'. Closes #2069.
Marcel Molina
2005-10-09
3
-14
/
+20
*
Optimization refactoring for add_limit_offset!. In partial fullfilment of #1236.
Marcel Molina
2005-10-09
3
-9
/
+13
*
Add versioning convention from SwitchTower to all Rails components. Add --ver...
Marcel Molina
2005-10-09
2
-1
/
+11
*
Add ability to get all siblings, including the current child, with acts_as_tr...
Marcel Molina
2005-10-09
3
-1
/
+17
*
PostgreSQL returns the path type wrapped in quotes.
Marcel Molina
2005-10-09
2
-2
/
+2
*
Add geometric type for postgresql adapter. Closes #2233.
Marcel Molina
2005-10-09
5
-0
/
+78
*
Move require_library_or_gem out of AR's abstract_adapter and into ActiveSuppo...
Marcel Molina
2005-10-08
1
-23
/
+0
*
Don't tell me about defined reader methods, even at debug level.
Jeremy Kemper
2005-10-07
1
-1
/
+0
*
Add option (true by default) to generate reader methods for each attribute of...
Marcel Molina
2005-10-07
7
-59
/
+152
*
Add convenience predicate methods on Column class. In partial fullfilment of ...
Marcel Molina
2005-10-06
4
-8
/
+34
*
Raise an exception when invalid options are passed to ActiveRecord::Base.find...
Marcel Molina
2005-10-06
4
-3
/
+15
*
sqlite topics.approved should default to true like the other dbs
Jeremy Kemper
2005-10-06
1
-1
/
+1
*
Remove straggling symbolize_strings_in_hash from [2427].
Jeremy Kemper
2005-10-06
2
-2
/
+2
*
Fixup tests for [2474].
Jeremy Kemper
2005-10-06
2
-11
/
+11
*
Add rename_table to mysql, sqlite and postgres adapters for use in migrations
Tobias Lütke
2005-10-06
5
-1
/
+39
*
Allow in memory sqlite DBs when RAILS_ROOT is defined [blair@orcaware.com]
Michael Koziarski
2005-10-06
1
-2
/
+4
*
smallint -> boolean in pg sql
Jeremy Kemper
2005-10-06
1
-1
/
+1
*
Quote booleans according the rules defined by the adapter
Michael Koziarski
2005-10-06
7
-12
/
+21
*
Added :force option to create_table that'll try to drop the table if it alrea...
David Heinemeier Hansson
2005-10-06
3
-0
/
+8
*
Schema dumper should emit ":default => false" if the default for a column is ...
Jamis Buck
2005-10-05
1
-2
/
+2
*
Forced newer versions of RedCloth to use hard breaks [DHH]
David Heinemeier Hansson
2005-10-02
1
-2
/
+4
*
Association validation does not belong in a before_save callback: move it int...
Jeremy Kemper
2005-10-02
5
-67
/
+109
*
Get rid of old symbolize_strings_in_hash.
Jeremy Kemper
2005-09-30
3
-18
/
+9
*
Ticket #2282 - fix parsing of timestamps with time zone
Jeremy Kemper
2005-09-30
1
-1
/
+3
*
No need to string.to_s right after checking that string.is_a?(String)
Jeremy Kemper
2005-09-30
1
-3
/
+3
*
Move transaction thread-safety test to transactions_test. Check that simulta...
Jeremy Kemper
2005-09-30
2
-47
/
+79
[prev]
[next]