aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-07-27 17:06:22 +0000
committerJamis Buck <jamis@37signals.com>2005-07-27 17:06:22 +0000
commit369d0543380d302fb4b4fc30d4f6d52f07f9c0b6 (patch)
tree9af5bc70b2cf000b90c2182ffce88c64cd1c17b0 /activerecord/CHANGELOG
parent9fad3251d3d11f32fad01c820b6d1d72e2329976 (diff)
downloadrails-369d0543380d302fb4b4fc30d4f6d52f07f9c0b6.tar.gz
rails-369d0543380d302fb4b4fc30d4f6d52f07f9c0b6.tar.bz2
rails-369d0543380d302fb4b4fc30d4f6d52f07f9c0b6.zip
Fix create_table so that id column is implicitly added [Rick Olson]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1949 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index d23b69aa16..b76c107cfe 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fix create_table so that id column is implicitly added [Rick Olson]
+
* Default sequence names for Oracle changed to #{table_name}_seq, which is the most commonly used standard. In addition, a new method ActiveRecord::Base#set_sequence_name allows the developer to set the sequence name per model. This is a non-backwards-compatible change -- anyone using the old-style "rails_sequence" will need to either create new sequences, or set: ActiveRecord::Base.set_sequence_name = "rails_sequence" #1798
* OCIAdapter now properly handles synonyms, which are commonly used to separate out the schema owner from the application user #1798