aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-07-30 10:16:21 +0000
committerJamis Buck <jamis@37signals.com>2005-07-30 10:16:21 +0000
commitda874a4af817ebeb9421934b2a4e4e0032b1234d (patch)
tree29b3e248526352bb6697298e876579a8ee374cb5 /activerecord/CHANGELOG
parent0ea1375d7526cd1bbd74947f292d13b83a7617e6 (diff)
downloadrails-da874a4af817ebeb9421934b2a4e4e0032b1234d.tar.gz
rails-da874a4af817ebeb9421934b2a4e4e0032b1234d.tar.bz2
rails-da874a4af817ebeb9421934b2a4e4e0032b1234d.zip
Allow add_column and create_table to specify NOT NULL #1712 [emptysands@gmail.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1955 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 b76c107cfe..83dddd1f4e 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Allow add_column and create_table to specify NOT NULL #1712 [emptysands@gmail.com]
+
* 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