aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorMatt Boehlig <thetamind@gmail.com>2008-05-11 16:46:07 -0500
committerMatt Boehlig <thetamind@gmail.com>2008-05-11 16:46:07 -0500
commit35634feb474cc55fbc95edeffe98cec241d45f23 (patch)
tree9f9091817f8ff0947397dfb223d9e0b0a5576251 /activerecord/CHANGELOG
parentf4aaa2e99c350466e54afefdf278b4ba04008cd9 (diff)
downloadrails-35634feb474cc55fbc95edeffe98cec241d45f23.tar.gz
rails-35634feb474cc55fbc95edeffe98cec241d45f23.tar.bz2
rails-35634feb474cc55fbc95edeffe98cec241d45f23.zip
Cleanup whitespace and change_table documentation
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 597b876f22..264ea79d4a 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -8,7 +8,7 @@
change_table :videos do |t|
t.timestamps # adds created_at, updated_at
- t.belongs_to :goat # add goat_id integer
+ t.belongs_to :goat # adds goat_id integer
t.string :name, :email, :limit => 20 # adds name and email both with a 20 char limit
t.remove :name, :email # removes the name and email columns
end